mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-25 15:34:38 +03:00
17 lines
533 B
TypeScript
17 lines
533 B
TypeScript
export * as Composer from 'telegraf/composer';
|
|
export * as Markup from 'telegraf/markup';
|
|
export * as BaseScene from 'telegraf/scenes/base';
|
|
export * as session from 'telegraf/session';
|
|
export * as Stage from 'telegraf/stage';
|
|
export * as WizardScene from 'telegraf/scenes/wizard';
|
|
export * as Extra from 'telegraf/extra';
|
|
|
|
export * from './decorators';
|
|
export * from './interfaces';
|
|
export * from './telegraf.module';
|
|
|
|
/**
|
|
* Backward compatibility with versions < 1.4.0
|
|
*/
|
|
export { Telegraf as TelegrafProvider } from 'telegraf';
|