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;