/** * Created by km on 2/13/17. */ import * as models from "./base"; import * as metrics from "./metrics/metrics"; /** @public */ export class ArticlePage extends models.Model { constructor(card, shelfModels, shareAction) { super(); this.card = card; this.shelves = shelfModels; this.shareAction = shareAction; this.isIncomplete = false; this.pageMetrics = new metrics.PageMetrics(); this.pageRenderMetrics = {}; } } //# sourceMappingURL=article-page.js.map