!feat(): use dynamic types for listener decorators

This commit is contained in:
unknown
2020-12-27 21:35:01 +03:00
parent 16969365f2
commit b3dc258c70
28 changed files with 97 additions and 270 deletions

View File

@@ -0,0 +1,6 @@
import { UpdateMethods } from '../telegraf.types';
export interface ListenerMetadata {
method: UpdateMethods;
args: unknown[];
}