jovo-plugin-class-handler
Version:
Jovo plugin that allows using classes for defining handlers.
11 lines (10 loc) • 322 B
TypeScript
import { DataParamMetaData } from './DataDecorators';
export interface IntentOptions {
name?: string;
}
export interface IntentMetaData {
key: string | symbol;
name: string;
dataParameters: DataParamMetaData[];
}
export declare function Intent(options?: IntentOptions | string): MethodDecorator;