UNPKG

intentful

Version:

Create Custom Skills with less headache

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