skalara-web/types/models.ts
2023-07-30 01:01:08 -04:00

8 lines
118 B
TypeScript

export type Project = {
id: string;
title: string;
description: string;
github: string;
stack: string[];
};