10 lines
207 B
TypeScript
10 lines
207 B
TypeScript
export interface Project {
|
|
id: string;
|
|
title: string;
|
|
description?: string;
|
|
image?: string;
|
|
technologies?: string[];
|
|
features?: string[];
|
|
demo?: string;
|
|
repository?: string;
|
|
} |