fix(client): fixed game highscore exports
This commit is contained in:
parent
4852fe0301
commit
c092347b63
4 changed files with 9 additions and 3 deletions
|
@ -160,6 +160,7 @@ import {
|
||||||
ChatsIndex,
|
ChatsIndex,
|
||||||
Dialog,
|
Dialog,
|
||||||
FileDownloadParameters,
|
FileDownloadParameters,
|
||||||
|
GameHighScore,
|
||||||
InputChatPermissions,
|
InputChatPermissions,
|
||||||
InputFileLike,
|
InputFileLike,
|
||||||
InputInlineResult,
|
InputInlineResult,
|
||||||
|
|
|
@ -37,7 +37,8 @@ import {
|
||||||
ChatEvent,
|
ChatEvent,
|
||||||
ChatInviteLink,
|
ChatInviteLink,
|
||||||
UsersIndex,
|
UsersIndex,
|
||||||
ChatsIndex
|
ChatsIndex,
|
||||||
|
GameHighScore
|
||||||
} from '../types'
|
} from '../types'
|
||||||
|
|
||||||
// @copy
|
// @copy
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
import { TelegramClient } from '../../client'
|
import { TelegramClient } from '../../client'
|
||||||
import { InputPeerLike, MtCuteInvalidPeerTypeError } from '../../types'
|
import {
|
||||||
import { GameHighScore } from '../../types/bots/game-high-score'
|
InputPeerLike,
|
||||||
|
MtCuteInvalidPeerTypeError,
|
||||||
|
GameHighScore,
|
||||||
|
} from '../../types'
|
||||||
import { tl } from '@mtcute/tl'
|
import { tl } from '@mtcute/tl'
|
||||||
import {
|
import {
|
||||||
createUsersChatsIndex,
|
createUsersChatsIndex,
|
||||||
|
|
|
@ -3,3 +3,4 @@ export * from './input'
|
||||||
export * from './keyboards'
|
export * from './keyboards'
|
||||||
export * from './inline-query'
|
export * from './inline-query'
|
||||||
export * from './callback-query'
|
export * from './callback-query'
|
||||||
|
export * from './game-high-score'
|
||||||
|
|
Loading…
Reference in a new issue