todomvc
Version:
> Helping you select an MV\* framework
15 lines (14 loc) • 329 B
text/typescript
/// <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;
}
}