mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix props
This commit is contained in:
parent
a4d7e0c78e
commit
079ad8f35a
16
invokeai/frontend/web/index.d.ts
vendored
16
invokeai/frontend/web/index.d.ts
vendored
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user