From 1a9541e1368c022e404dd420b988f7b2f236b4cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Gr=C3=B6ger?= Date: Tue, 15 Oct 2024 07:29:58 +0200 Subject: [PATCH] [feat][apikey] add type ApiKey --- types/models.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/types/models.d.ts b/types/models.d.ts index 3ac8bfa..aa52fa9 100644 --- a/types/models.d.ts +++ b/types/models.d.ts @@ -35,4 +35,10 @@ declare namespace FG { name: string; permissions: Array; } + interface ApiKey { + id: number; + name: string; + token?: string; + description?: string; + } }