Skip to content

Instantly share code, notes, and snippets.

@orlando-c-h
Last active November 2, 2017 21:54
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 orlando-c-h/b5d1982030fa14c734a8bff60cf0672e to your computer and use it in GitHub Desktop.
Save orlando-c-h/b5d1982030fa14c734a8bff60cf0672e to your computer and use it in GitHub Desktop.
export interface Todo {
id: number;
name: string;
notes: string;
due: Date;
done: Boolean;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment