UNPKG

todomvc

Version:

> Helping you select an MV\* framework

15 lines (14 loc) 329 B
/// <reference path='../_all.ts' /> module todos { export interface ITodoScope extends ng.IScope { todos: TodoItem[]; newTodo: string; editedTodo: TodoItem; remainingCount: number; doneCount: number; allChecked: boolean; statusFilter: { completed: boolean; }; location: ng.ILocationService; vm: TodoCtrl; } }