UNPKG

@nodeject/ui-components

Version:

UI library for non-trivial components

16 lines (15 loc) 347 B
import * as React from 'react'; import { TodoItemList } from './'; export interface TodoProps { id: string; todoItemList?: TodoItemList; title?: { id: string; text: string; } | { id: string; text: string; type: number; }; } export declare const Todo: React.FC<TodoProps>;