src/lib/interface/todo.interface.ts
Properties |
headline |
headline:
|
Type : string
|
id |
id:
|
Type : string
|
todos |
todos:
|
Type : Todo[]
|
export interface TodoWidgetConfig {
id: string;
headline: string;
todos: Todo[];
}
export interface Todo {
title: string;
done?: boolean;
dueDate?: Date;
}