From 00a0cb3403f3f1dc3442196b5a5d76ac368e6e2f Mon Sep 17 00:00:00 2001 From: Mary Hipp Date: Thu, 27 Apr 2023 11:02:44 -0400 Subject: [PATCH] fix(ui): update exported types --- invokeai/frontend/web/index.d.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/invokeai/frontend/web/index.d.ts b/invokeai/frontend/web/index.d.ts index 3006a22d93..686b6a8795 100644 --- a/invokeai/frontend/web/index.d.ts +++ b/invokeai/frontend/web/index.d.ts @@ -2,6 +2,7 @@ import React, { PropsWithChildren } from 'react'; import { IAIPopoverProps } from '../web/src/common/components/IAIPopover'; import { IAIIconButtonProps } from '../web/src/common/components/IAIIconButton'; import { InvokeTabName } from 'features/ui/store/tabMap'; +import { PartialAppConfig } from 'app/invokeai'; export {}; @@ -77,11 +78,8 @@ declare module '@invoke-ai/invoke-ai-ui' { interface InvokeProps extends PropsWithChildren { apiUrl?: string; - disabledPanels?: string[]; - disabledTabs?: InvokeTabName[]; token?: string; - shouldTransformUrls?: boolean; - shouldFetchImages?: boolean; + config?: PartialAppConfig; } declare function Invoke(props: InvokeProps): JSX.Element;