intentful
Version:
Create Custom Skills with less headache
22 lines (21 loc) • 640 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SpeakItemCommand = void 0;
const command_1 = require("./command");
class SpeakItemCommand extends command_1.Command {
constructor(props) {
super('SpeakItem', props);
}
commandSpecificModel() {
return {
align: this.props.align,
componentId: this.props.componentId,
highlightMode: this.props.highlightMode,
minimumDwellTime: this.props.minimumDwellTime
};
}
commandSpecificRequestHandlers() {
return [];
}
}
exports.SpeakItemCommand = SpeakItemCommand;