Skip to content

Instantly share code, notes, and snippets.

@sajeetharan
Created June 12, 2019 17:19
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 sajeetharan/a1dff67c87dce10bc2220aa0e9c550c3 to your computer and use it in GitHub Desktop.
Save sajeetharan/a1dff67c87dce10bc2220aa0e9c550c3 to your computer and use it in GitHub Desktop.
export interface Todo {
id?: string;
description: string;
userId: string;
completed?: boolean;
type : string;
}
export interface TodoCollection {
Documents: Todo[];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment