diff options
author | 2021-10-20 04:18:29 -0700 | |
---|---|---|
committer | 2021-10-20 04:18:29 -0700 | |
commit | 58b196c58310a1489b554d16ec2695c7974eaab3 (patch) | |
tree | e631543d9b9891e01bd35e5374e987ef600a524d /src/api/schema.d.ts | |
parent | 3dc53c3d1327f9e86467d6509cb94faacfd26580 (diff) | |
download | bun-58b196c58310a1489b554d16ec2695c7974eaab3.tar.gz bun-58b196c58310a1489b554d16ec2695c7974eaab3.tar.zst bun-58b196c58310a1489b554d16ec2695c7974eaab3.zip |
rewrote most of the router
Diffstat (limited to 'src/api/schema.d.ts')
-rw-r--r-- | src/api/schema.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/schema.d.ts b/src/api/schema.d.ts index 36b9a6fcd..89f9af7b9 100644 --- a/src/api/schema.d.ts +++ b/src/api/schema.d.ts @@ -300,7 +300,7 @@ type uint32 = number; } export interface Router { - routes: string[]; + routes: StringMap; route: int32; params: StringMap; } |