routable-arcade-see-all-page-intent.js 456 B

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