mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
add settingsmodal
This commit is contained in:
parent
85888030c3
commit
c2922d5991
12
invokeai/frontend/web/index.d.ts
vendored
12
invokeai/frontend/web/index.d.ts
vendored
@ -60,9 +60,19 @@ declare module '@invoke-ai/invoke-ai-ui' {
|
||||
declare class IAIIconButton extends React.Component<IAIIconButtonProps> {
|
||||
public constructor(props: IAIIconButtonProps);
|
||||
}
|
||||
|
||||
declare class SettingsModal extends React.Component<SettingsModalProps> {
|
||||
public constructor(props: SettingsModalProps);
|
||||
}
|
||||
}
|
||||
|
||||
declare function Invoke(props: PropsWithChildren): JSX.Element;
|
||||
|
||||
export { ThemeChanger, InvokeAiLogoComponent, IAIPopover, IAIIconButton };
|
||||
export {
|
||||
ThemeChanger,
|
||||
InvokeAiLogoComponent,
|
||||
IAIPopover,
|
||||
IAIIconButton,
|
||||
SettingsModal,
|
||||
};
|
||||
export = Invoke;
|
||||
|
@ -4,6 +4,13 @@ import InvokeAiLogoComponent from './features/system/components/InvokeAILogoComp
|
||||
import ThemeChanger from './features/system/components/ThemeChanger';
|
||||
import IAIPopover from './common/components/IAIPopover';
|
||||
import IAIIconButton from './common/components/IAIIconButton';
|
||||
import SettingsModal from './features/system/components/SettingsModal/SettingsModal';
|
||||
|
||||
export default Component;
|
||||
export { InvokeAiLogoComponent, ThemeChanger, IAIPopover, IAIIconButton };
|
||||
export {
|
||||
InvokeAiLogoComponent,
|
||||
ThemeChanger,
|
||||
IAIPopover,
|
||||
IAIIconButton,
|
||||
SettingsModal,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user