interface TodoItem {
    done: boolean;
    text: string;
}

Properties

Properties

done: boolean
text: string