blob: 0a5c10938daddd2d117fbb5b8816b15401bbaf55 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { normalizePreviewPlaform } from "../models/preview-platform";
export function makeRoutableTodayPageIntent(opts) {
const { platform, ...rest } = opts;
return {
...rest,
platform: normalizePreviewPlaform(platform),
$kind: "RoutableTodayPageIntent",
};
}
//# sourceMappingURL=routable-today-page-intent.js.map
|