UNPKG

intentful

Version:

Create Custom Skills with less headache

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