UNPKG

tea-project-mikelitooz

Version:

A project for registering OSS on the tea protocol.

18 lines (16 loc) 307 B
// src/types/index.ts export interface Contributor { id: string; name: string; email: string; role: string; } export interface Project { id: string; name: string; description: string; contributors: Contributor[]; url: string; createdAt: Date; updatedAt: Date; }