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