UNPKG

@guardian/threads

Version:
11 lines (10 loc) 287 B
import { FC } from 'react'; declare type Mode = 'single' | 'multiline' | 'date'; declare type EditableTextProps = { text: string; placeholder?: string; onChange: (text: string) => void; mode?: Mode; }; export declare const EditableText: FC<EditableTextProps>; export {};