zakscode/src/models/project.ts
ztimson 88f2a716b9
All checks were successful
Build Website / Build NPM Project (push) Successful in 20s
Build Website / Build & Push Dockerfile (push) Successful in 1m5s
Konsole updates
2024-01-05 01:40:17 -05:00

8 lines
122 B
TypeScript

export interface Project {
icon?: string;
name: string;
description: string;
link: string;
source?: string;
}