November 2019
Beginner
804 pages
20h 1m
English
We'll start with the TodoListView interface:
interface TodoListView {
render(todoList: ReadonlyArray<TodoItem>): void;
getInput(): TodoItem;
getFilter(): string;
clearInput(): void;
filter(): void;
}
Next, we will create an HTML-based implementation of this interface.
Read now
Unlock full access