mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-27 08:18:08 +03:00
16 lines
507 B
TypeScript
16 lines
507 B
TypeScript
import { SetMetadata } from '@nestjs/common';
|
|
import { DECORATORS } from '../telegraf.constants';
|
|
import { UpdateType, MessageSubTypes } from 'telegraf/typings/telegram-types';
|
|
|
|
/**
|
|
* Registers middleware for provided update type.
|
|
* @param updateTypes Update type
|
|
*
|
|
* https://telegraf.js.org/#/?id=on
|
|
*/
|
|
export function TelegrafOn(
|
|
updateTypes: UpdateType | UpdateType[] | MessageSubTypes | MessageSubTypes[],
|
|
): MethodDecorator {
|
|
return SetMetadata(DECORATORS.ON, { updateTypes: updateTypes });
|
|
}
|