intentful
Version:
Create Custom Skills with less headache
29 lines (28 loc) • 1.06 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AlexaImage = void 0;
const component_1 = require("../../component");
class AlexaImage extends component_1.APLComponent {
constructor(props) {
super('AlexaImage', props);
}
componentSpecificModel() {
return {
imageAlignment: this.props.imageAlignment,
imageAspectRatio: this.props.imageAspectRatio,
imageBlurredBackground: this.props.imageBlurredBackground,
imageHeight: this.props.imageHeight,
imageScale: this.props.imageScale,
imageWidth: this.props.imageWidth,
gradientLowerInputRange: this.props.gradientLowerInputRange,
imageRoundedCorner: this.props.imageRoundedCorner,
imageShadow: this.props.imageShadow,
imageSource: this.props.imageSource,
overlayGradient: this.props.overlayGradient
};
}
componentSpecificRequestHandlers() {
return [];
}
}
exports.AlexaImage = AlexaImage;