UNPKG

goalist

Version:

Goalist is a command line tool for managing daily goals.

11 lines (10 loc) 239 B
// -------------------------------------------------- // PUBLIC API // -------------------------------------------------- export interface Goal { id: number, title: string, description?: string, complete: boolean, active: boolean, };