Skip to content

Instantly share code, notes, and snippets.

@greetclock
Created July 14, 2022 07:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save greetclock/c17faba4c779a9d0a961a0f8d5220bf2 to your computer and use it in GitHub Desktop.
Save greetclock/c17faba4c779a9d0a961a0f8d5220bf2 to your computer and use it in GitHub Desktop.
// https://github.com/greetclock/parts/blob/3eec90/libs/todos-data/src/lib/types.ts
export interface Todo {
uuid: string
title: string
description?: string
status: 'pending' | 'done'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment