blob: 0a0949130c13b125ebdce7fcb0b298e6034192a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { normalizePreviewPlaform } from "../models/preview-platform";
const ROUTABLE_ARCADE_SEE_ALL_PAGE_INTENT_KIND = "RoutableArcadeSeeAllPageIntent";
export function makeRoutableArcadeSeeAllPageIntent(opts) {
const { platform, ...rest } = opts;
return {
...rest,
platform: normalizePreviewPlaform(platform),
$kind: "RoutableArcadeSeeAllPageIntent",
};
}
//# sourceMappingURL=routable-arcade-see-all-page-intent.js.map
|