nestjs-telegraf/lib/enums/listener-menthod.enum.ts

21 lines
419 B
TypeScript
Raw Normal View History

export enum ListenerMethod {
2020-12-23 21:35:40 +03:00
Use = 'use',
On = 'on',
Hears = 'hears',
Command = 'command',
Start = 'start',
Help = 'help',
Settings = 'settings',
Mention = 'mention',
Phone = 'phone',
Hashtag = 'hashtag',
Cashtag = 'cashtag',
Email = 'email',
Url = 'url',
TextLink = 'textLink',
TextMention = 'textMention',
2020-12-23 21:35:40 +03:00
Action = 'action',
InlineQuery = 'inlineQuery',
GameQuery = 'gameQuery',
}