mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-26 15:58:09 +03:00
21 lines
490 B
TypeScript
21 lines
490 B
TypeScript
import { SetMetadata } from '@nestjs/common';
|
|
import { DECORATORS } from '../telegraf.constants';
|
|
|
|
export type TelegrafMentionUsername = string | string[];
|
|
|
|
export interface TelegrafMentionMetadata {
|
|
username: TelegrafMentionUsername;
|
|
}
|
|
|
|
/**
|
|
* Mention handling.
|
|
* @param username Username
|
|
*
|
|
* https://telegraf.js.org/#/?id=mention
|
|
*/
|
|
export function TelegrafMention(
|
|
username: TelegrafMentionUsername,
|
|
): MethodDecorator {
|
|
return SetMetadata(DECORATORS.MENTION, { username });
|
|
}
|