Skip to content

Instantly share code, notes, and snippets.

@ljmotta
Created October 14, 2020 13:22
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 ljmotta/11e03f54e01b37e343603da8a563dc46 to your computer and use it in GitHub Desktop.
Save ljmotta/11e03f54e01b37e343603da8a563dc46 to your computer and use it in GitHub Desktop.
TodoList Api
import { Item } from "./TodoListEnvelopeApi";
export interface TodoListApi {
addItem(item: string): Promise<void>;
getItems(): Promise<Item[]>;
markAllAsCompleted(): void;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment