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