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,
|
||||
Dialog,
|
||||
FileDownloadParameters,
|
||||
GameHighScore,
|
||||
InputChatPermissions,
|
||||
InputFileLike,
|
||||
InputInlineResult,
|
||||
|
|
|
@ -37,7 +37,8 @@ import {
|
|||
ChatEvent,
|
||||
ChatInviteLink,
|
||||
UsersIndex,
|
||||
ChatsIndex
|
||||
ChatsIndex,
|
||||
GameHighScore
|
||||
} from '../types'
|
||||
|
||||
// @copy
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
import { TelegramClient } from '../../client'
|
||||
import { InputPeerLike, MtCuteInvalidPeerTypeError } from '../../types'
|
||||
import { GameHighScore } from '../../types/bots/game-high-score'
|
||||
import {
|
||||
InputPeerLike,
|
||||
MtCuteInvalidPeerTypeError,
|
||||
GameHighScore,
|
||||
} from '../../types'
|
||||
import { tl } from '@mtcute/tl'
|
||||
import {
|
||||
createUsersChatsIndex,
|
||||
|
|
|
@ -3,3 +3,4 @@ export * from './input'
|
|||
export * from './keyboards'
|
||||
export * from './inline-query'
|
||||
export * from './callback-query'
|
||||
export * from './game-high-score'
|
||||
|
|
Loading…
Reference in a new issue