19 lines
487 B
TypeScript
19 lines
487 B
TypeScript
|
|
import { ProjectCategory } from "@/enums/projectCategory";
|
||
|
|
import { ProjectStatus } from "@/enums/projectStatus";
|
||
|
|
|
||
|
|
export type T_projects = {
|
||
|
|
name: string;
|
||
|
|
description: string;
|
||
|
|
thumbnail?: string;
|
||
|
|
images?: string[];
|
||
|
|
category: ProjectCategory;
|
||
|
|
githubLink: string;
|
||
|
|
liveLink?: string;
|
||
|
|
technologies: string[];
|
||
|
|
companyName: string;
|
||
|
|
completionYear?: number;
|
||
|
|
isFeatured: boolean;
|
||
|
|
status: ProjectStatus;
|
||
|
|
createdAt: Date;
|
||
|
|
updatedAt: Date;
|
||
|
|
}
|