diff options
author | 2023-02-01 18:40:48 +0530 | |
---|---|---|
committer | 2023-02-01 05:10:48 -0800 | |
commit | 661fca9cde8bd82fa848944e0c1e0d6f6f12d403 (patch) | |
tree | 9e5888be8199efe2715e668ad2a530deac7bfe63 | |
parent | b0803298f935eb8cb071ae36144c55a1393068ea (diff) | |
download | bun-661fca9cde8bd82fa848944e0c1e0d6f6f12d403.tar.gz bun-661fca9cde8bd82fa848944e0c1e0d6f6f12d403.tar.zst bun-661fca9cde8bd82fa848944e0c1e0d6f6f12d403.zip |
Add filePath property on MatchedRoute (#1964)
-rw-r--r-- | packages/bun-types/bun.d.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/bun-types/bun.d.ts b/packages/bun-types/bun.d.ts index 0de48d038..0b0ceb7eb 100644 --- a/packages/bun-types/bun.d.ts +++ b/packages/bun-types/bun.d.ts @@ -3115,6 +3115,7 @@ declare module "bun" { * ``` */ readonly params: Record<string, string>; + readonly filePath: string; readonly pathname: string; readonly query: Record<string, string>; readonly name: string; |