code refactoring

This commit is contained in:
2024-05-02 17:06:09 +05:30
parent 3e80780fce
commit 11e62230d9
6 changed files with 11 additions and 14 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ export interface IPost{
slug: string;
title: string;
description: string;
category: 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;
category: string;
categories: string[];
roles: string[];
responsibilities: string[];
technologiesUsed: string[];