UNPKG

intentful

Version:

Create Custom Skills with less headache

19 lines (18 loc) 507 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ReinflateCommand = void 0; const command_1 = require("./command"); class ReinflateCommand extends command_1.Command { constructor(props) { super('Reinflate', props); } commandSpecificModel() { return { preservedSequencers: this.props.preservedSequencers }; } commandSpecificRequestHandlers() { return []; } } exports.ReinflateCommand = ReinflateCommand;