feat: contextmessageupdate backward compatibility

This commit is contained in:
Aleksandr Bukhalo 2020-05-03 12:04:50 +03:00
parent 6361e537aa
commit 62bdbd77e5

View File

@ -3,3 +3,9 @@ import { TelegrafContext } from 'telegraf/typings/context';
export interface Context extends TelegrafContext { export interface Context extends TelegrafContext {
[key: string]: any; [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 {}