mirror of
https://github.com/get-drexa/drive.git
synced 2025-12-01 14:01:40 +00:00
8 lines
167 B
TypeScript
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
|
||
|
|
}
|