blob: bb964f0362675954cd742b79c55da75b88f69567 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { normalizePreviewPlaform } from "../models/preview-platform";
/**
* Create a {@linkcode ChartsHubPageIntent}
*/
export function makeChartsHubPageIntent(opts) {
const { platform, ...rest } = opts;
return {
...rest,
platform: normalizePreviewPlaform(platform),
$kind: "ChartsHubPageIntent",
};
}
//# sourceMappingURL=charts-hub-page-intent.js.map
|