code refactoring

This commit is contained in:
2024-05-06 23:20:51 +05:30
parent fd43f9c1e6
commit fe79623464
10 changed files with 17 additions and 10 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ export interface IPost{
slug: string;
title: string;
description: string;
categories: string;
categories: string[];
postUrl: string;
likes: number;
views: number;
+1 -1
View File
@@ -2,7 +2,7 @@ export interface IProject{
projectId: number;
name: string;
description: string;
categories: string;
categories: string[];
categoryList: string[];
roles: string[];
responsibilities: string[];