From 89c716f7598b9271751d9f9b0740d179252ed881 Mon Sep 17 00:00:00 2001 From: Abi Raja Date: Mon, 11 Dec 2023 18:22:36 -0500 Subject: [PATCH] update to include new settings --- frontend/src/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/types.ts b/frontend/src/types.ts index 9202745..236116a 100644 --- a/frontend/src/types.ts +++ b/frontend/src/types.ts @@ -34,6 +34,7 @@ export interface CodeGenerationParams { image: string; resultImage?: string; history?: string[]; + isImportedFromCode?: boolean; } export type FullGenerationSettings = CodeGenerationParams & Settings;