Skip to content

Commit 352875a

Browse files
Khartirghengeveld
authored andcommitted
remove non implemented types (#107)
1 parent ced2ba2 commit 352875a

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

packages/react-async/src/index.d.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -187,21 +187,11 @@ export function IfPending<T>(props: {
187187
initial?: boolean
188188
state: AsyncState<T>
189189
}): JSX.Element
190-
export function IfLoading<T>(props: {
191-
children?: PendingChildren<T>
192-
initial?: boolean
193-
state: AsyncState<T>
194-
}): JSX.Element
195190
export function IfFulfilled<T>(props: {
196191
children?: FulfilledChildren<T>
197192
persist?: boolean
198193
state: AsyncState<T>
199194
}): JSX.Element
200-
export function IfResolved<T>(props: {
201-
children?: FulfilledChildren<T>
202-
persist?: boolean
203-
state: AsyncState<T>
204-
}): JSX.Element
205195
export function IfRejected<T>(props: {
206196
children?: RejectedChildren<T>
207197
persist?: boolean

0 commit comments

Comments
 (0)