Skip to content

Commit ed73359

Browse files
build(ui): export PartialAppConfig
1 parent 9d51ed7 commit ed73359

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

invokeai/frontend/web/index.d.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import React, { PropsWithChildren } from 'react';
22
import { IAIPopoverProps } from '../web/src/common/components/IAIPopover';
33
import { IAIIconButtonProps } from '../web/src/common/components/IAIIconButton';
44
import { InvokeTabName } from 'features/ui/store/tabMap';
5+
import { PartialAppConfig } from 'app/invokeai';
56

67
export {};
78

@@ -77,11 +78,8 @@ declare module '@invoke-ai/invoke-ai-ui' {
7778

7879
interface InvokeProps extends PropsWithChildren {
7980
apiUrl?: string;
80-
disabledPanels?: string[];
81-
disabledTabs?: InvokeTabName[];
8281
token?: string;
83-
shouldTransformUrls?: boolean;
84-
shouldFetchImages?: boolean;
82+
config?: PartialAppConfig;
8583
}
8684

8785
declare function Invoke(props: InvokeProps): JSX.Element;

0 commit comments

Comments
 (0)