this repo has no description
at main 523 B view raw
1/** 2 * Created by km on 2/13/17. 3 */ 4import * as models from "./base"; 5import * as metrics from "./metrics/metrics"; 6/** @public */ 7export class ArticlePage extends models.Model { 8 constructor(card, shelfModels, shareAction) { 9 super(); 10 this.card = card; 11 this.shelves = shelfModels; 12 this.shareAction = shareAction; 13 this.isIncomplete = false; 14 this.pageMetrics = new metrics.PageMetrics(); 15 this.pageRenderMetrics = {}; 16 } 17} 18//# sourceMappingURL=article-page.js.map