31 lines
860 B
TypeScript
31 lines
860 B
TypeScript
|
import { constant } from './constant';
|
||
|
import freeze from './freeze';
|
||
|
import is from './is';
|
||
|
import _if from './if';
|
||
|
import ifElse from './ifElse';
|
||
|
import map from './map';
|
||
|
import omit from './omit';
|
||
|
import omitBy from './omitBy';
|
||
|
import reject from './reject';
|
||
|
import update, { omitted } from './update';
|
||
|
import updateIn from './updateIn';
|
||
|
import withDefault from './withDefault';
|
||
|
import { _ as placeholder } from './util/curry';
|
||
|
declare const u: {
|
||
|
omit: typeof omit;
|
||
|
omitBy: typeof omitBy;
|
||
|
constant: typeof constant;
|
||
|
freeze: typeof freeze;
|
||
|
is: typeof is;
|
||
|
update: typeof update;
|
||
|
updateIn: typeof updateIn;
|
||
|
reject: typeof reject;
|
||
|
map: typeof map;
|
||
|
withDefault: typeof withDefault;
|
||
|
ifElse: typeof ifElse;
|
||
|
if: typeof _if;
|
||
|
omitted: typeof omitted;
|
||
|
_: typeof placeholder;
|
||
|
} & typeof update;
|
||
|
export default u;
|