all repos — website @ 31f5c16aaf1aa8b9982dc4b4ec98b848adbf3031

Unnamed repository; edit this file 'description' to name the repository.

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;
	};
};