UNPKG

@nodeject/ui-components

Version:

UI library for non-trivial components

9 lines (8 loc) 196 B
export declare type TodoItem = { createdOn: string; id: string; isCompleted: boolean; parent?: string; title: string; }; export declare type TodoItemList = TodoItem[];