refactor: cleanup context interface

This commit is contained in:
Aleksandr Bukhalo 2020-09-13 11:28:42 +03:00
parent 6ecd61be4a
commit 744da0a922

View File

@ -1,11 +1,3 @@
import { Context as TelegrafContext } from 'telegraf';
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 {}
export interface Context extends TelegrafContext {}