mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-25 23:44:39 +03:00
21 lines
419 B
TypeScript
21 lines
419 B
TypeScript
export enum ListenerMethod {
|
|
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',
|
|
Action = 'action',
|
|
InlineQuery = 'inlineQuery',
|
|
GameQuery = 'gameQuery',
|
|
}
|