Skip to content

Commit 8500315

Browse files
committed
Re-export AbortedDeferredError from @remix-run/router
1 parent 3e99fb2 commit 8500315

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

packages/react-router-dom/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ export type {
115115
To,
116116
} from "react-router";
117117
export {
118+
AbortedDeferredError,
118119
Await,
119120
DataMemoryRouter,
120121
MemoryRouter,

packages/react-router-native/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ export type {
6464
To,
6565
} from "react-router";
6666
export {
67+
AbortedDeferredError,
6768
Await,
6869
DataMemoryRouter,
6970
MemoryRouter,

packages/react-router/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import type {
1717
To,
1818
} from "@remix-run/router";
1919
import {
20+
AbortedDeferredError,
2021
Action as NavigationType,
2122
createPath,
2223
defer,
@@ -146,8 +147,9 @@ export type {
146147
To,
147148
};
148149
export {
149-
DataMemoryRouter,
150+
AbortedDeferredError,
150151
Await,
152+
DataMemoryRouter,
151153
MemoryRouter,
152154
Navigate,
153155
NavigationType,

0 commit comments

Comments
 (0)