intentful
Version:
Create Custom Skills with less headache
17 lines (16 loc) • 455 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.APLASpeech = void 0;
const component_1 = require("./component");
class APLASpeech extends component_1.APLAComponent {
constructor(props) {
super('Speech', props);
}
componentSpecificModel() {
return {
contentType: this.props.contentType,
content: this.props.content
};
}
}
exports.APLASpeech = APLASpeech;