UNPKG

intentful

Version:

Create Custom Skills with less headache

20 lines (19 loc) 563 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AlexaProgressDots = void 0; const component_1 = require("../../component"); class AlexaProgressDots extends component_1.APLComponent { constructor(props) { super('AlexaProgressDots', props); } componentSpecificModel() { return { componentId: this.props.componentId, dotSize: this.props.dotSize }; } componentSpecificRequestHandlers() { return []; } } exports.AlexaProgressDots = AlexaProgressDots;