8 lines
198 B
TypeScript
8 lines
198 B
TypeScript
export const routePaths = {
|
|
accessDenied: "/access-denied",
|
|
login: "/login",
|
|
aiCharacters: "/ai-characters",
|
|
} as const;
|
|
|
|
export type RoutePath = (typeof routePaths)[keyof typeof routePaths];
|