UNPKG

redux-app-examples

Version:

Examples of redux-app with Angular and React.

12 lines (9 loc) 243 B
export class TodoState { private static nextTodoId = 0; public readonly id = TodoState.nextTodoId++; public text: string; public completed = false; constructor(text: string) { this.text = text; } }