fix(client): fixed game highscore exports

This commit is contained in:
teidesu 2021-05-16 02:52:51 +03:00
parent 4852fe0301
commit c092347b63
4 changed files with 9 additions and 3 deletions

View file

@ -160,6 +160,7 @@ import {
ChatsIndex,
Dialog,
FileDownloadParameters,
GameHighScore,
InputChatPermissions,
InputFileLike,
InputInlineResult,

View file

@ -37,7 +37,8 @@ import {
ChatEvent,
ChatInviteLink,
UsersIndex,
ChatsIndex
ChatsIndex,
GameHighScore
} from '../types'
// @copy

View file

@ -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,

View file

@ -3,3 +3,4 @@ export * from './input'
export * from './keyboards'
export * from './inline-query'
export * from './callback-query'
export * from './game-high-score'