Files
drive/apps/file-proxy/router.ts
2025-10-19 17:05:15 +00:00

8 lines
167 B
TypeScript

import type { RouterTypes } from "bun"
function router<
R extends { [K in keyof R]: RouterTypes.RouteValue<Extract<K, string>> },
>(routes: R): R {
return routes
}