blob: 9d5d6c074e2d2e15fc5d1653a6ccf606e4132429 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/**
* 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
|