blob: 1ee16fb1e1136731eb923fc158a2c6ddc5c64dde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/**
* Created by km on 2/13/17.
*/
import * as base from "./base";
import * as metrics from "./metrics/metrics";
/** @public */
export class GenericPage extends base.Model {
constructor(shelfModels) {
super();
this.shelves = shelfModels;
this.title = null;
this.presentationOptions = [];
this.isIncomplete = false;
this.pageMetrics = new metrics.PageMetrics();
}
}
/** @public */
export class InAppPurchaseInstallPage extends base.Model {
constructor() {
super();
this.pageMetrics = new metrics.PageMetrics();
this.pageRenderMetrics = {};
}
}
/**
* @public
* Screen shown in search tab when search bar is focused but empty.
*/
export class SearchFocusPage extends GenericPage {
}
/**
* @public
* Initial screen shown in search tab when search bar is unfocused.
*/
export class SearchLandingPage extends GenericPage {
}
/** @public */
export class ArcadePage extends GenericPage {
}
/** @public */
export class ArcadeSeeAllGamesPage extends GenericPage {
constructor(shelfModels) {
super(shelfModels);
this.pageSegments = [];
}
}
//# sourceMappingURL=generic-page.js.map
|