forked from dfvgbh/deno-telegram-bot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mod.ts
25 lines (24 loc) · 1.04 KB
/
mod.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
export * from "./src/telegram-bot/telegram-bot.ts";
export type {
RunParams,
RunWithPollingParams,
RunWithWebhookParams,
} from "./src/telegram-bot/run-params.ts";
export * from "./src/types/common/methods.ts";
export * from "./src/types/common/objects.ts";
export * from "./src/types/games/methods.ts";
export * from "./src/types/games/objects.ts";
export * from "./src/types/getting-updates/methods.ts";
export * from "./src/types/getting-updates/objects.ts";
export * from "./src/types/getting-updates/update-helpers.ts";
export * from "./src/types/inline-mode/methods.ts";
export * from "./src/types/inline-mode/objects.ts";
export * from "./src/types/passport/methods.ts";
export * from "./src/types/passport/objects.ts";
export * from "./src/types/payments/methods.ts";
export * from "./src/types/payments/objects.ts";
export * from "./src/types/stickers/methods.ts";
export * from "./src/types/stickers/objects.ts";
export * from "./src/types/updating-messages/methods.ts";
export * from "./src/types/method.ts";
export * from "./src/types/utils.ts";