fix props

This commit is contained in:
Mary Hipp 2023-03-14 13:22:57 -04:00
parent a4d7e0c78e
commit 079ad8f35a

View File

@ -1,3 +1,5 @@
import React, { PropsWithChildren } from 'react';
export {};
declare module 'redux-socket.io-middleware';
@ -40,5 +42,17 @@ declare global {
/* eslint-enable @typescript-eslint/no-explicit-any */
}
declare function Invoke(): React.JSX;
declare module '@invoke-ai/invoke-ai-ui' {
declare class ThemeChanger extends React.Component<ThemeChangerProps> {
public constructor(props: ThemeChangerProps);
}
declare class InvokeAiLogoComponent extends React.Component<InvokeAILogoComponentProps> {
public constructor(props: InvokeAILogoComponentProps);
}
}
declare function Invoke(props: PropsWithChildren): JSX.Element;
export { ThemeChanger, InvokeAiLogoComponent };
export = Invoke;