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