UNPKG

intentful

Version:

Create Custom Skills with less headache

23 lines (22 loc) 765 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AlexaProgressBarRadial = void 0; const component_1 = require("../../component"); class AlexaProgressBarRadial extends component_1.APLComponent { constructor(props) { super('AlexaProgressBarRadial', props); } componentSpecificModel() { return { bufferValue: this.props.bufferValue, progressBarType: this.props.progressBarType, progressFillColor: this.props.progressFillColor, progressValue: this.props.progressValue, totalValue: this.props.totalValue }; } componentSpecificRequestHandlers() { return []; } } exports.AlexaProgressBarRadial = AlexaProgressBarRadial;