mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-26 15:58:09 +03:00
12 lines
313 B
TypeScript
12 lines
313 B
TypeScript
import { TelegrafContext } from 'telegraf/typings/context';
|
|
|
|
export interface Context extends TelegrafContext {
|
|
[key: string]: any;
|
|
}
|
|
|
|
/**
|
|
* Removed type from Telegraf v3.38.0, added for backward compatibility.
|
|
* TODO: remove on next major release
|
|
*/
|
|
export interface ContextMessageUpdate extends Context {}
|