From 7c6b220ecd5b01baf0c445800f3a41cc1ad3cc02 Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Tue, 23 Jan 2024 16:10:34 -0300 Subject: [PATCH] Add pinned 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 a70227735..3fc20be68 100644 --- a/src/frontend/src/types/api/index.ts +++ b/src/frontend/src/types/api/index.ts @@ -24,6 +24,7 @@ export type APIClassType = { documentation: string; error?: string; official?: boolean; + pinned?: boolean; flow?: FlowType; [key: string]: | Array