From 606974a6f7d9830785d812acb27adf7f49c84ec4 Mon Sep 17 00:00:00 2001 From: Thomas Gnandt Date: Sat, 7 Sep 2019 00:18:27 +0200 Subject: [PATCH] remove non implemented types --- packages/react-async/src/index.d.ts | 10 ---------- 1 file changed, 10 deletions(-) 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