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

8 lines
220 B
TypeScript

export enum BusterInfoRoutes {
INFO_GETTING_STARTED = '/info/getting-started'
}
export type BusterInfoRoutesWithArgs = {
[BusterInfoRoutes.INFO_GETTING_STARTED]: { route: BusterInfoRoutes.INFO_GETTING_STARTED };
};