UNPKG

react-widgets-up

Version:

An à la carte set of polished, extensible, and accessible inputs built for React

13 lines 411 B
/// <reference types="react" /> export type DataItem = unknown; export type Value = unknown; export type RenderProp<TArg> = (arg: TArg) => React.ReactNode; export interface WidgetHandle { focus(opts?: FocusOptions): void; } export type SearchMetadata = { action: 'clear' | 'input'; lastSearchTerm?: string; originalEvent?: React.SyntheticEvent; }; //# sourceMappingURL=types.d.ts.map