Files
NGRX-Playground/src/app/features/tasks/data-access/task.model.ts
T

11 lines
248 B
TypeScript

export type TaskPriority = 'low' | 'medium' | 'high';
export type TaskFilter = 'all' | 'active' | 'completed';
export interface Task {
id: string;
title: string;
completed: boolean;
priority: TaskPriority;
updatedAt: string;
}