File

src/lib/interface/todo.interface.ts

Index

Properties

Properties

headline
headline: string
Type : string
id
id: string
Type : string
todos
todos: Todo[]
Type : Todo[]
export interface TodoWidgetConfig {
    id: string;
    headline: string;
    todos: Todo[];
}

export interface Todo {
    title: string;
    done?: boolean;
    dueDate?: Date;
}

results matching ""

    No results matching ""