From 733ab07d6145208d3244aa7551734cfab3fbc29d Mon Sep 17 00:00:00 2001 From: marzban-dev Date: Sun, 19 Jan 2025 19:54:16 +0330 Subject: [PATCH] Updated --- frontend/types/global.d.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/frontend/types/global.d.ts b/frontend/types/global.d.ts index ac13093..c0e1e48 100644 --- a/frontend/types/global.d.ts +++ b/frontend/types/global.d.ts @@ -32,4 +32,15 @@ declare global { "meta_rating": number | null } + type Category = { + "id": number, + "name": string, + "slug": string, + "icon": string, + "meta_title": string, + "meta_description": string, + "parent": number, + "children": "string" + } + }