UNPKG

intentful

Version:

Create Custom Skills with less headache

17 lines (16 loc) 432 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FinishCommand = void 0; const command_1 = require("./command"); class FinishCommand extends command_1.Command { constructor(props) { super('Finish', props ? props : {}); } commandSpecificModel() { return {}; } commandSpecificRequestHandlers() { return []; } } exports.FinishCommand = FinishCommand;