Last active
May 28, 2019 17:59
-
-
Save artberri/a3d66a9f842029a81dd662e139836c46 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| import { Todo } from '../entities'; | |
| export abstract class TodoStorageService { | |
| public abstract getTodos(): Todo[]; | |
| public abstract saveTodos(todos: Todo[]): void; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment