src/types.ts (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13
import type { Language } from "./constants"; export type Project = { name: string; description: string; languages: Language[]; links: { source?: string; live?: string; /** the link to the relevant page on this site */ internal?: string; }; };