jvcgpt / src /utils /route.ts
Greums's picture
crlf to lf
1813a37
raw
history blame
235 Bytes
export const routes = {
home: "home",
topic: "topic",
settings: "settings",
} as const;
export type Route = typeof routes[keyof typeof routes];
export type RouteSetter = (route: Route, page?: number, id?: string) => void;