intentful
Version:
Create Custom Skills with less headache
21 lines (20 loc) • 625 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AlexaPageCounter = void 0;
const component_1 = require("../../component");
class AlexaPageCounter extends component_1.APLComponent {
constructor(props) {
super('AlexaPageCounter', props);
}
componentSpecificModel() {
return {
currentPage: this.props.currentPage,
currentPageComponentId: this.props.currentPage,
totalPages: this.props.currentPage
};
}
componentSpecificRequestHandlers() {
return [];
}
}
exports.AlexaPageCounter = AlexaPageCounter;