intentful
Version:
Create Custom Skills with less headache
19 lines (18 loc) • 454 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.IdleCommand = void 0;
const command_1 = require("./command");
class IdleCommand extends command_1.Command {
constructor(props) {
super('Idle', props);
}
commandSpecificModel() {
return {
delay: this.props.delay
};
}
commandSpecificRequestHandlers() {
return [];
}
}
exports.IdleCommand = IdleCommand;