mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2025-01-12 23:21:04 +03:00
18 lines
449 B
TypeScript
18 lines
449 B
TypeScript
|
import { SetMetadata } from '@nestjs/common';
|
||
|
import { DECORATORS } from '../telegraf.constants';
|
||
|
|
||
|
export type TelegrafMentionUsername = string | string[];
|
||
|
|
||
|
export interface MentionOptions {
|
||
|
username: TelegrafMentionUsername;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Mention handling.
|
||
|
*
|
||
|
* @see https://telegraf.js.org/#/?id=mention
|
||
|
*/
|
||
|
export const Mention = (username: TelegrafMentionUsername): MethodDecorator => {
|
||
|
return SetMetadata(DECORATORS.MENTION, { username });
|
||
|
};
|