UNPKG

intentful

Version:

Create Custom Skills with less headache

21 lines (20 loc) 566 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SetValueCommand = void 0; const command_1 = require("./command"); class SetValueCommand extends command_1.Command { constructor(props) { super('SetValue', props); } commandSpecificModel() { return { componentId: this.props.componentId, property: this.props.property, value: this.props.value }; } commandSpecificRequestHandlers() { return []; } } exports.SetValueCommand = SetValueCommand;