@totalsoft/rocket-ui
Version:
A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.
11 lines (10 loc) • 588 B
TypeScript
import { isEmpty } from 'ramda';
export declare const isNilOrEmpty: typeof isEmpty;
export declare const extractFirstValue: import("ts-toolbelt/out/Function/Curry").Curry<(fns: any, obj: any) => any>;
export declare const internalLabel: <U extends {
__internalDisplay?: unknown;
}>(obj: U) => U["__internalDisplay"];
export declare const internalValue: <U extends {
__internalInputValue?: unknown;
}>(obj: U) => U["__internalInputValue"];
export declare const convertValueToOption: import("ts-toolbelt/out/Function/Curry").Curry<(value: any, options: any, getValue: any) => any>;