blob: 2fb8203aba9d043c058244dc2140e668d4d35e3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { normalizePreviewPlaform } from "../models/preview-platform";
import { normalizeAdamID } from "../util";
export const SEE_ALL_TYPES = ["reviews", "customers-also-bought-apps", "developer-other-apps"];
export function makeSeeAllPageIntent(opts) {
return {
...opts,
"$kind": "SeeAllPageIntent",
"id": normalizeAdamID(opts.id),
"platform": normalizePreviewPlaform(opts.platform),
"see-all": opts["see-all"],
};
}
//# sourceMappingURL=see-all-page-intent.js.map
|