diff --git a/frontend/src/types.ts b/frontend/src/types.ts index 653b648..6c812a7 100644 --- a/frontend/src/types.ts +++ b/frontend/src/types.ts @@ -9,6 +9,7 @@ export enum GeneratedCodeConfig { REACT_TAILWIND = "react_tailwind", BOOTSTRAP = "bootstrap", IONIC_TAILWIND = "ionic_tailwind", + REACT_MUI_COMPONENT = "react_mui_component", } export interface Settings { @@ -34,7 +35,6 @@ export interface CodeGenerationParams { image: string; resultImage?: string; history?: string[]; - // isImageGenerationEnabled: boolean; // TODO: Merge with Settings type in types.ts } export type FullGenerationSettings = CodeGenerationParams & Settings;