mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-26 07:48:11 +03:00
13 lines
332 B
TypeScript
13 lines
332 B
TypeScript
import { SetMetadata } from '@nestjs/common';
|
|
import { DECORATORS } from '../telegraf.constants';
|
|
|
|
/**
|
|
* Phone number handling.
|
|
* @param phone Phone number
|
|
*
|
|
* https://telegraf.js.org/#/?id=phone
|
|
*/
|
|
export function TelegrafPhone(phone: string | string[]): MethodDecorator {
|
|
return SetMetadata(DECORATORS.PHONE, { phone });
|
|
}
|