diff options
Diffstat (limited to 'node_modules/@jet-app/app-store/tmp/src/api/models/article-page.js')
| -rw-r--r-- | node_modules/@jet-app/app-store/tmp/src/api/models/article-page.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/node_modules/@jet-app/app-store/tmp/src/api/models/article-page.js b/node_modules/@jet-app/app-store/tmp/src/api/models/article-page.js new file mode 100644 index 0000000..9d5d6c0 --- /dev/null +++ b/node_modules/@jet-app/app-store/tmp/src/api/models/article-page.js @@ -0,0 +1,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
\ No newline at end of file |
