Created
July 14, 2022 07:31
-
-
Save greetclock/c17faba4c779a9d0a961a0f8d5220bf2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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