diff --git a/packages/react-async/src/index.d.ts b/packages/react-async/src/index.d.ts index ebfd5929..0443812a 100644 --- a/packages/react-async/src/index.d.ts +++ b/packages/react-async/src/index.d.ts @@ -187,21 +187,11 @@ export function IfPending(props: { initial?: boolean state: AsyncState }): JSX.Element -export function IfLoading(props: { - children?: PendingChildren - initial?: boolean - state: AsyncState -}): JSX.Element export function IfFulfilled(props: { children?: FulfilledChildren persist?: boolean state: AsyncState }): JSX.Element -export function IfResolved(props: { - children?: FulfilledChildren - persist?: boolean - state: AsyncState -}): JSX.Element export function IfRejected(props: { children?: RejectedChildren persist?: boolean