UNPKG

get-hackathons

Version:

Easy retrieval of Hackathon data from the Devpost website

17 lines (16 loc) 292 B
export type UserHackathons = { username: string; total: number; wins: number; rate: string; hackathons: Hackathon[]; }; type Hackathon = { id: string; link: string; title: string; tag: string; img: string; winner: boolean | string[]; }; export {};