nestwhats
Version:
A whatsapp-web.js wrapper for NestJS to create WhatsApp bots
11 lines (10 loc) • 317 B
TypeScript
export declare const ARG_INDEX_METADATA: unique symbol;
export interface ArgIndexOptions {
rest?: boolean;
}
export interface ArgIndexMeta {
propertyKey: string;
index: number;
options?: ArgIndexOptions;
}
export declare function ArgIndex(index: number, options?: ArgIndexOptions): PropertyDecorator;