Skip to content

Commit

Permalink
Fix Blocker type declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
dchenk authored Dec 6, 2024
1 parent 9819f96 commit b1c0596
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-router/lib/router/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -631,8 +631,8 @@ export type Fetcher<TData = any> =

interface BlockerBlocked {
state: "blocked";
reset(): void;
proceed(): void;
reset: () => void;
proceed: () => void;
location: Location;
}

Expand Down

0 comments on commit b1c0596

Please sign in to comment.