intentful
Version:
Create Custom Skills with less headache
23 lines (22 loc) • 667 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AnimateItemCommand = void 0;
const command_1 = require("./command");
class AnimateItemCommand extends command_1.Command {
constructor(props) {
super('AnimateItem', props);
}
commandSpecificModel() {
return {
componentId: this.props.componentId,
duration: this.props.duration,
easing: this.props.easing,
repeatMode: this.props.repeatMode,
value: this.props.value
};
}
commandSpecificRequestHandlers() {
return [];
}
}
exports.AnimateItemCommand = AnimateItemCommand;