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, ChatsIndex,
Dialog, Dialog,
FileDownloadParameters, FileDownloadParameters,
GameHighScore,
InputChatPermissions, InputChatPermissions,
InputFileLike, InputFileLike,
InputInlineResult, InputInlineResult,

View file

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

View file

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

View file

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