buster/web/src/routes/busterRoutes/busterInfoRoutes.ts

8 lines
220 B
TypeScript
Raw Normal View History

2025-04-22 05:01:17 +08:00
export enum BusterInfoRoutes {
INFO_GETTING_STARTED = '/info/getting-started'
}
export type BusterInfoRoutesWithArgs = {
[BusterInfoRoutes.INFO_GETTING_STARTED]: { route: BusterInfoRoutes.INFO_GETTING_STARTED };
};