Skip to content

Commit df96d75

Browse files
committed
Fix prettier complaining about long export
1 parent a8ea231 commit df96d75

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

packages/react-async/src/index.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
import Async from "./Async"
2-
export { default as Async, createInstance, AsyncConstructor, FulfilledProps, InitialProps, PendingProps, RejectedProps, SettledProps } from "./Async"
2+
export {
3+
default as Async,
4+
createInstance,
5+
AsyncConstructor,
6+
FulfilledProps,
7+
InitialProps,
8+
PendingProps,
9+
RejectedProps,
10+
SettledProps
11+
} from "./Async"
312
export * from "./types"
413
export { default as useAsync, useFetch, FetchOptions, FetchError } from "./useAsync"
514
export default Async

0 commit comments

Comments
 (0)