mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-26 07:48:11 +03:00
15 lines
468 B
TypeScript
15 lines
468 B
TypeScript
import { SetMetadata } from '@nestjs/common';
|
|
import { DECORATORS } from '../telegraf.constants';
|
|
|
|
export type Triggers = string | string[] | RegExp | RegExp[];
|
|
|
|
/**
|
|
* Registers middleware for handling inline_query actions with regular expressions.
|
|
* @param triggers Triggers
|
|
*
|
|
* https://telegraf.js.org/#/?id=inlinequery
|
|
*/
|
|
export function TelegrafInlineQuery(triggers: Triggers): MethodDecorator {
|
|
return SetMetadata(DECORATORS.INLINE_QUERY, { triggers });
|
|
}
|