7 lines
123 B
TypeScript
7 lines
123 B
TypeScript
|
export interface Project {
|
||
|
name: string;
|
||
|
desc: string[];
|
||
|
short: string;
|
||
|
more?: string;
|
||
|
repo?: string;
|
||
|
}
|