UNPKG

@domisoft/todo-clean-architecture

Version:

todo project following uncle bob clean architecture patterns

7 lines (6 loc) 132 B
export declare class TodoEntity { id: string; name: string; completed?: boolean; constructor(params: TodoEntity); }