this repo has no description
at main 15 lines 470 B view raw
1import * as base from "./base"; 2import * as metrics from "./metrics/metrics"; 3/** @public */ 4export class DynamicGenericPage extends base.Model { 5 constructor() { 6 super(); 7 this.shelfOrderings = {}; 8 this.shelfMapping = {}; 9 this.presentationOptions = []; 10 this.isIncomplete = false; 11 this.pageMetrics = new metrics.PageMetrics(); 12 this.pageRenderMetrics = {}; 13 } 14} 15//# sourceMappingURL=dynamic-generic-page.js.map