blob: 2ecc0e242fc3ca4b0e2cd3ce1314f45fca7ef020 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { makeChartsPageIntent } from "../../api/intents/charts-page-intent";
import { makeChartsHubPageIntent } from "../../api/intents/charts-hub-page-intent";
import { generateRoutes } from "../util/generate-routes";
/// MARK: Charts Detail Page Routing
const { routes: chartsPageRoutes, makeCanonicalUrl: makeChartsPageURL } = generateRoutes(makeChartsPageIntent, "/{platform}/charts/{genreId}", [], {
optionalQuery: ["chart", "ageBandId"],
});
export { chartsPageRoutes, makeChartsPageURL };
/// MARK: Charts Hub Page Routing
const { routes: chartsHubPageRoutes, makeCanonicalUrl: makeChartsHubPageURL } = generateRoutes(makeChartsHubPageIntent, "/{platform}/charts");
export { chartsHubPageRoutes, makeChartsHubPageURL };
//# sourceMappingURL=charts-page-url.js.map
|