nestjs-telegraf/lib/decorators/update.decorator.ts

9 lines
290 B
TypeScript
Raw Normal View History

2020-08-14 01:21:33 +03:00
import { SetMetadata } from '@nestjs/common';
import { DECORATORS } from '../telegraf.constants';
/**
* `@Update` decorator, it's like NestJS `@Controller` decorator,
* but for Telegram Bot API updates.
2020-08-14 01:21:33 +03:00
*/
export const Update = (): ClassDecorator => SetMetadata(DECORATORS.UPDATE, {});