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" + } + }