mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-26 07:48:11 +03:00
9 lines
290 B
TypeScript
9 lines
290 B
TypeScript
import { SetMetadata } from '@nestjs/common';
|
|
import { DECORATORS } from '../telegraf.constants';
|
|
|
|
/**
|
|
* `@Update` decorator, it's like NestJS `@Controller` decorator,
|
|
* but for Telegram Bot API updates.
|
|
*/
|
|
export const Update = (): ClassDecorator => SetMetadata(DECORATORS.UPDATE, {});
|