mirror of https://github.com/buster-so/buster.git
8 lines
220 B
TypeScript
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 };
|
||
|
};
|