Skip to content

Commit 2648ccc

Browse files
authored
Export AsyncConstructor (#234)
Export AsyncConstructor
2 parents 5349220 + c6bc739 commit 2648ccc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-async/src/Async.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type GenericAsync = typeof Async & {
5454
Settled<T>(props: SettledProps<T>): JSX.Element
5555
}
5656

57-
type AsyncConstructor<T> = React.ComponentClass<AsyncProps<T>> & {
57+
export type AsyncConstructor<T> = React.ComponentClass<AsyncProps<T>> & {
5858
Initial: React.FC<InitialProps<T>>
5959
Pending: React.FC<PendingProps<T>>
6060
Loading: React.FC<PendingProps<T>>

0 commit comments

Comments
 (0)