Skip to content

Instantly share code, notes, and snippets.

@artberri
Last active May 28, 2019 17:59
Show Gist options
  • Select an option

  • Save artberri/a3d66a9f842029a81dd662e139836c46 to your computer and use it in GitHub Desktop.

Select an option

Save artberri/a3d66a9f842029a81dd662e139836c46 to your computer and use it in GitHub Desktop.
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