From f48b4468f6ae5ca5f8251ff88694bcd1c769d239 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 8 Feb 2024 10:02:33 -0300 Subject: [PATCH] Add icon property to APIClassType --- src/frontend/src/types/api/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontend/src/types/api/index.ts b/src/frontend/src/types/api/index.ts index 16c840e37..46e62376c 100644 --- a/src/frontend/src/types/api/index.ts +++ b/src/frontend/src/types/api/index.ts @@ -17,6 +17,7 @@ export type APIClassType = { description: string; template: APITemplateType; display_name: string; + icon?: string; input_types?: Array; output_types?: Array; custom_fields?: CustomFieldsType;