aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Gaurish Sethia <78847111+gaurishhs@users.noreply.github.com> 2023-02-01 18:40:48 +0530
committerGravatar GitHub <noreply@github.com> 2023-02-01 05:10:48 -0800
commit661fca9cde8bd82fa848944e0c1e0d6f6f12d403 (patch)
tree9e5888be8199efe2715e668ad2a530deac7bfe63
parentb0803298f935eb8cb071ae36144c55a1393068ea (diff)
downloadbun-661fca9cde8bd82fa848944e0c1e0d6f6f12d403.tar.gz
bun-661fca9cde8bd82fa848944e0c1e0d6f6f12d403.tar.zst
bun-661fca9cde8bd82fa848944e0c1e0d6f6f12d403.zip
Add filePath property on MatchedRoute (#1964)
-rw-r--r--packages/bun-types/bun.d.ts1
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;