intentful
Version:
Create Custom Skills with less headache
12 lines (11 loc) • 498 B
TypeScript
import { Command, CommandModel, CommandProps } from './command';
import { LabeledRequestHandler } from '../../skill/models';
export interface FinishCommandModel extends CommandModel {
}
export interface FinishCommandProps extends CommandProps {
}
export declare class FinishCommand extends Command<FinishCommandModel, FinishCommandProps> {
constructor(props?: FinishCommandProps);
commandSpecificModel(): FinishCommandModel;
commandSpecificRequestHandlers(): LabeledRequestHandler[];
}