Skip to content

Commit

Permalink
style(types/inline-types): fix tslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
goodmind committed Nov 15, 2016
1 parent 1d7e9db commit 138b5a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runtime-types/inline-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ export const InlineQueryResultLocation = BaseInlineQuery<TcombInlineQueryResultL
title: t.String,
thumb_url: t.maybe(t.String),
thumb_width: t.maybe(t.Number),
thumb_height: t.maybe(t.Number),
thumb_height: t.maybe(t.Number)
})
export interface TcombInlineQueryResultLocation extends BaseInlineQueryResult {
type: 'location'
Expand All @@ -319,7 +319,7 @@ export const InlineQueryResultMpeg4Gif = BaseInlineQuery<TcombInlineQueryResultM
mpeg4_height: t.Number,
thumb_url: t.String,
title: t.maybe(t.String),
caption: t.maybe(t.String),
caption: t.maybe(t.String)
})
export interface TcombInlineQueryResultMpeg4Gif extends BaseInlineQueryResult {
type: 'mpeg4_gif'
Expand Down

0 comments on commit 138b5a9

Please sign in to comment.