typetify 2.2.0 → 2.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/CHANGELOG.md +61 -0
  2. package/dist/chunk-2YRFWQ6M.mjs +1 -0
  3. package/dist/chunk-35CB7HNN.js +1 -0
  4. package/dist/chunk-6WGRWYAD.js +1 -0
  5. package/dist/chunk-7UMXGQE4.mjs +1 -0
  6. package/dist/chunk-7XHBEA63.js +1 -0
  7. package/dist/chunk-BLUG7TSP.js +1 -0
  8. package/dist/chunk-F76ECQKE.js +1 -0
  9. package/dist/chunk-FHCBXSNA.js +1 -0
  10. package/dist/chunk-GQIJLGEZ.mjs +1 -0
  11. package/dist/chunk-MB77QAOC.mjs +1 -0
  12. package/dist/chunk-U7MK5AR5.mjs +1 -0
  13. package/dist/chunk-WWU7P2L2.mjs +1 -0
  14. package/dist/collection/index.d.mts +125 -1
  15. package/dist/collection/index.d.ts +125 -1
  16. package/dist/collection/index.js +1 -1
  17. package/dist/collection/index.mjs +1 -1
  18. package/dist/color/index.d.mts +274 -0
  19. package/dist/color/index.d.ts +274 -0
  20. package/dist/color/index.js +1 -0
  21. package/dist/color/index.mjs +1 -0
  22. package/dist/dom/index.d.mts +353 -0
  23. package/dist/dom/index.d.ts +353 -0
  24. package/dist/dom/index.js +1 -0
  25. package/dist/dom/index.mjs +1 -0
  26. package/dist/index.d.mts +482 -410
  27. package/dist/index.d.ts +482 -410
  28. package/dist/index.js +2 -2
  29. package/dist/index.mjs +2 -2
  30. package/dist/object/index.d.mts +137 -1
  31. package/dist/object/index.d.ts +137 -1
  32. package/dist/object/index.js +1 -1
  33. package/dist/object/index.mjs +1 -1
  34. package/dist/storage/index.d.mts +197 -0
  35. package/dist/storage/index.d.ts +197 -0
  36. package/dist/storage/index.js +1 -0
  37. package/dist/storage/index.mjs +1 -0
  38. package/dist/string/index.d.mts +201 -1
  39. package/dist/string/index.d.ts +201 -1
  40. package/dist/string/index.js +1 -1
  41. package/dist/string/index.mjs +1 -1
  42. package/package.json +16 -1
  43. package/dist/chunk-4HQERWI6.mjs +0 -1
  44. package/dist/chunk-5LWNMYHB.js +0 -1
  45. package/dist/chunk-7V3EDYJD.mjs +0 -1
  46. package/dist/chunk-FYQNKDT3.mjs +0 -1
  47. package/dist/chunk-MSOFO6QN.js +0 -1
  48. package/dist/chunk-WQPSXQT5.js +0 -1
package/dist/index.d.ts CHANGED
@@ -2,11 +2,11 @@ import { isDefined, isNil, assert, fail, noop, identity, unreachable } from './c
2
2
  export { assertDefined } from './core/index.js';
3
3
  import { isObject, isPlainObject, isString, isNumber, isBoolean, isFunction, isArray, isDate, isPromise, isError, isSymbol, hasKey, hasKeys, isEmpty, isNonEmpty, castArray, cloneWith, cloneDeepWith, conformsTo, eq, gt, gte, lt, lte, isArguments, isArrayBuffer, isArrayLike, isArrayLikeObject, isBuffer, isElement, isEqualWith, isFinite, isInteger, isLength, isMap, isMatch, isMatchWith, isNaN, isNative, isNull, isUndefined, isObjectLike, isRegExp, isSafeInteger, isSet, isTypedArray, isWeakMap, isWeakSet, toFinite, toInteger, toLength, toNumber, toPlainObject, toSafeInteger, toString } from './guards/index.js';
4
4
  export { toArray } from './guards/index.js';
5
- import { pick, omit, keysTyped, valuesTyped, entriesTyped, fromEntriesTyped, mapObject, filterObject, mergeShallow, clone, cloneDeep, set, invert, deepMerge, isEqual, has, unset, paths, transform, deepGet, deepGetOr, deepSet, deepHas, deepPath, deepPluck } from './object/index.js';
6
- export { get } from './object/index.js';
7
- import { awaitTo, sleep, withTimeout, retry, debounce, throttle, once, onceAsync, defer, parallel } from './async/index.js';
8
- export { Deferred, RetryOptions } from './async/index.js';
9
- import { unique, groupBy, indexBy, partition, chunk as chunk$1, compact, flatten as flatten$1, sortBy, first, last, range as range$1, shuffle, sample, zip as zip$1, unzip, difference, take as take$1, drop, takeWhile, dropWhile, findLast, countBy, maxBy, minBy, sumBy, head, tail, init } from './collection/index.js';
5
+ import { pick, omit, keysTyped, valuesTyped, entriesTyped, fromEntriesTyped, mapObject, filterObject, mergeShallow, clone, cloneDeep, set, deepMerge, isEqual, has, unset, paths, transform, deepGet, deepGetOr, deepSet, deepHas, deepPath, deepPluck, findKey, findLastKey, at, invertBy } from './object/index.js';
6
+ export { get, invert } from './object/index.js';
7
+ import { awaitTo, sleep, withTimeout, retry, debounce, throttle, onceAsync, defer, parallel } from './async/index.js';
8
+ export { Deferred, RetryOptions, once } from './async/index.js';
9
+ import { unique, groupBy, indexBy, partition, chunk as chunk$1, compact, flatten as flatten$1, sortBy, first, last, range as range$1, shuffle, sample, zip as zip$1, unzip, difference, take as take$1, drop, takeWhile, dropWhile, findLast, countBy, maxBy, minBy, sumBy, head, tail, init, reject, size, keyBy, sampleSize } from './collection/index.js';
10
10
  export { intersection } from './collection/index.js';
11
11
  import { safeJsonParse, safeJsonStringify, parseNumber, parseInteger, parseBoolean, parseDate, coerceString, coerceArray, trimAll, defaults, clamp, isEmail, isUrl, isUuid, isIpAddress, parseUrl } from './input/index.js';
12
12
  export { JsonParseResult, JsonStringifyResult } from './input/index.js';
@@ -15,7 +15,7 @@ export { TryCatchAsyncResult, TryCatchResult, compose, ifElse, pipe, unless, whe
15
15
  import { debug, invariant, assertNever, exhaustive, todo, deprecated, measure, measureAsync, setLogLevel, getLogLevel } from './dx/index.js';
16
16
  export { LogLevel, MeasureResult, log } from './dx/index.js';
17
17
  export { A as ArrayElement, b as Awaited, B as Brand, c as DeepPartial, d as DeepReadonly, e as DeepRequired, f as Dictionary, E as ElementOf, g as EnumValue, K as KeysOfType, M as Merge, i as Mutable, j as NonNullableDeep, k as Nullable, O as Optional, l as OptionalKeys, n as PartialBy, P as Prettify, o as PromiseValue, R as ReadonlyDictionary, p as RequireAtLeastOne, q as RequireExactlyOne, r as RequireKeys, s as RequiredBy, U as UnionToIntersection, V as ValueOf, u as brand, v as createMap, w as createSet, x as defineConst, y as defineEnum, z as defineTuple, C as narrow } from './types-CPlzx7Jp.js';
18
- import { capitalize, uncapitalize, camelCase, kebabCase, snakeCase, pascalCase, truncate, slugify, template, words } from './string/index.js';
18
+ import { capitalize, uncapitalize, camelCase, kebabCase, snakeCase, pascalCase, truncate, slugify, template, words, deburr, escape, unescape, escapeRegExp, pad, padStart, padEnd } from './string/index.js';
19
19
  import { negate, flip, partial, curry, ary, unary } from './fn/index.js';
20
20
  export { memoize } from './fn/index.js';
21
21
  import { sum, average, median, round, randomInt, randomFloat, percentage, min, max } from './math/index.js';
@@ -23,6 +23,11 @@ export { E as Err, N as None, O as Ok, a as Option, R as Result, S as Some } fro
23
23
  import { ok, err, some as some$1, none, mapResult, mapOption, mapErr, orElse, matchResult, matchOption, isOk, isErr, unwrapOption, unwrapOr, unwrapOptionOr, fromNullable, toNullable } from './result/index.js';
24
24
  export { andThen, unwrap } from './result/index.js';
25
25
  import { Memoize, Debounce, Throttle, Bind, Log, Measure, Retry, Deprecated, Sealed, Frozen, Validate, Lazy } from './decorator/index.js';
26
+ import { querySelector, querySelectorAll, classNames, addClass, removeClass, toggleClass, hasClass, addEventListener, once, delegate, isInViewport, getRect, scrollIntoView, scrollTo, getScrollPosition, setStyle, setStyles, getComputedStyleValue, getComputedStyles, show, hide, toggle } from './dom/index.js';
27
+ import { createStorage, localStorageTyped, sessionStorageTyped, withExpiry, createMemoryStorage, getCookie, setCookie, removeCookie, hasCookie } from './storage/index.js';
28
+ export { CookieOptions, ExpiryStorage, ExpiryStorageOptions, StorageOptions, TypedStorage } from './storage/index.js';
29
+ import { hexToRgb, rgbToHex, rgbToHsl, hslToRgb, parseColor, formatRgb, formatHsl, lighten, darken, saturate, desaturate, opacity, mix, invert, grayscale, luminance, contrast, isLight, isDark, getContrastColor, isSimilar, getDominant, getTemperature } from './color/index.js';
30
+ export { HSL, RGB } from './color/index.js';
26
31
  import { when, whenValue, unless, unlessValue, ifElse, ifElseLazy, cond, condLazy, condBy, matchValue, matchWithDefault, matchLazy, matchType, and, allTrue, andThen, or, anyTrue, orThen, notFn, coalesce, coalesceLazy, defaultTo, defaultToLazy, defaultToIf, defaultToIfEmpty, firstTruthy, firstWhere, firstDefined, allTruthy, allWhere, allDefined, get, getTyped, getPath, getOr, getPathOr, getOrLazy, tryGet, tryGetOr, tryGetResult, safe, unwrap, chain, optionalOr, optionalChain } from './logic/index.js';
27
32
  import { createIterator, lazyRange as range, lazyMap as map, lazyFilter as filter, lazyTake as take, lazySkip as skip, lazyChunk as chunk, lazyFlatten as flatten, lazyZip as zip, enumerate, cycle, repeat, fromAsync, toArray, iterReduce as reduce, iterForEach as forEach, iterFind as find, iterSome as some, iterEvery as every } from './iterator/index.js';
28
33
  import { filterDefined, filterDefinedFn, filterTruthy, filterTruthyFn, filterByGuard, filterByRefinement, filterBy, partitionByGuard, assertType, assertDefined, assertNotNull, assertCondition, createAssertion, narrowUnion, createDiscriminantGuard, switchUnion, exhaustiveCheck, excludeNull, excludeUndefined, excludeNullish, withDefault, withDefaultLazy, mapNullable, chainNullable, refine, oneOf, allOf, not, arrayOf, objectOf } from './narrowing/index.js';
@@ -1295,17 +1300,71 @@ declare function zipWith<T, R>(iteratee: (...values: T[]) => R, ...arrays: reado
1295
1300
  * ```
1296
1301
  */
1297
1302
  declare const _: {
1298
- createFeatureFlags: typeof createFeatureFlags;
1299
- flag: {
1303
+ readonly hexToRgb: typeof hexToRgb;
1304
+ readonly rgbToHex: typeof rgbToHex;
1305
+ readonly rgbToHsl: typeof rgbToHsl;
1306
+ readonly hslToRgb: typeof hslToRgb;
1307
+ readonly parseColor: typeof parseColor;
1308
+ readonly formatRgb: typeof formatRgb;
1309
+ readonly formatHsl: typeof formatHsl;
1310
+ readonly lighten: typeof lighten;
1311
+ readonly darken: typeof darken;
1312
+ readonly saturate: typeof saturate;
1313
+ readonly desaturate: typeof desaturate;
1314
+ readonly opacity: typeof opacity;
1315
+ readonly mix: typeof mix;
1316
+ readonly invert: typeof invert;
1317
+ readonly grayscale: typeof grayscale;
1318
+ readonly luminance: typeof luminance;
1319
+ readonly contrast: typeof contrast;
1320
+ readonly isLight: typeof isLight;
1321
+ readonly isDark: typeof isDark;
1322
+ readonly getContrastColor: typeof getContrastColor;
1323
+ readonly isSimilar: typeof isSimilar;
1324
+ readonly getDominant: typeof getDominant;
1325
+ readonly getTemperature: typeof getTemperature;
1326
+ readonly createStorage: typeof createStorage;
1327
+ readonly localStorageTyped: typeof localStorageTyped;
1328
+ readonly sessionStorageTyped: typeof sessionStorageTyped;
1329
+ readonly withExpiry: typeof withExpiry;
1330
+ readonly createMemoryStorage: typeof createMemoryStorage;
1331
+ readonly getCookie: typeof getCookie;
1332
+ readonly setCookie: typeof setCookie;
1333
+ readonly removeCookie: typeof removeCookie;
1334
+ readonly hasCookie: typeof hasCookie;
1335
+ readonly querySelector: typeof querySelector;
1336
+ readonly querySelectorAll: typeof querySelectorAll;
1337
+ readonly classNames: typeof classNames;
1338
+ readonly addClass: typeof addClass;
1339
+ readonly removeClass: typeof removeClass;
1340
+ readonly toggleClass: typeof toggleClass;
1341
+ readonly hasClass: typeof hasClass;
1342
+ readonly addEventListener: typeof addEventListener;
1343
+ readonly once: typeof once;
1344
+ readonly delegate: typeof delegate;
1345
+ readonly isInViewport: typeof isInViewport;
1346
+ readonly getRect: typeof getRect;
1347
+ readonly scrollIntoView: typeof scrollIntoView;
1348
+ readonly scrollTo: typeof scrollTo;
1349
+ readonly getScrollPosition: typeof getScrollPosition;
1350
+ readonly setStyle: typeof setStyle;
1351
+ readonly setStyles: typeof setStyles;
1352
+ readonly getComputedStyleValue: typeof getComputedStyleValue;
1353
+ readonly getComputedStyles: typeof getComputedStyles;
1354
+ readonly show: typeof show;
1355
+ readonly hide: typeof hide;
1356
+ readonly toggle: typeof toggle;
1357
+ readonly createFeatureFlags: typeof createFeatureFlags;
1358
+ readonly flag: {
1300
1359
  boolean(defaultValue?: boolean): FlagConfig;
1301
1360
  string(defaultValue?: string): FlagConfig;
1302
1361
  number(defaultValue?: number): FlagConfig;
1303
1362
  };
1304
- createForm: typeof createForm;
1305
- field: typeof field;
1306
- route: typeof route;
1307
- createRouter: typeof createRouter;
1308
- env: {
1363
+ readonly createForm: typeof createForm;
1364
+ readonly field: typeof field;
1365
+ readonly route: typeof route;
1366
+ readonly createRouter: typeof createRouter;
1367
+ readonly env: {
1309
1368
  string(options?: {
1310
1369
  default?: string;
1311
1370
  }): EnvVar<string>;
@@ -1329,407 +1388,420 @@ declare const _: {
1329
1388
  separator?: string;
1330
1389
  }): EnvVar<string[]>;
1331
1390
  };
1332
- createEnv: typeof createEnv;
1333
- createContainer: typeof createContainer;
1334
- createTypedContainer: typeof createTypedContainer;
1335
- pipe: typeof pipe;
1336
- pipeAsync: typeof pipeAsync;
1337
- flow: typeof flow;
1338
- createMiddleware: typeof createMiddleware;
1339
- compose: typeof compose;
1340
- createEventBus: typeof createEventBus;
1341
- createTypedEmitter: typeof createTypedEmitter;
1342
- smartCache: typeof smartCache;
1343
- memoize: typeof memoize;
1344
- signal: typeof signal;
1345
- computed: typeof computed;
1346
- effect: typeof effect;
1347
- batch: typeof batch;
1348
- createUndoableState: typeof createUndoableState;
1349
- createAutoUndoableState: typeof createAutoUndoableState;
1350
- string: typeof string;
1351
- number: typeof number;
1352
- boolean: typeof boolean;
1353
- literal: typeof literal;
1354
- array: typeof array;
1355
- object: typeof object;
1356
- optional: typeof optional;
1357
- nullable: typeof nullable;
1358
- union: typeof union$1;
1359
- intersection: typeof intersection;
1360
- record: typeof record;
1361
- tuple: typeof tuple;
1362
- unknownSchema: typeof unknown;
1363
- anySchema: typeof any;
1364
- date: typeof date;
1365
- email: typeof email;
1366
- url: typeof url;
1367
- uuid: typeof uuid;
1368
- parse: typeof parse;
1369
- safeParse: typeof safeParse;
1370
- validate: typeof validate;
1371
- is: typeof is;
1372
- parseJson: typeof parseJson;
1373
- createGuard: typeof createGuard;
1374
- createParser: typeof createParser;
1375
- filterDefined: typeof filterDefined;
1376
- filterDefinedFn: typeof filterDefinedFn;
1377
- filterTruthy: typeof filterTruthy;
1378
- filterTruthyFn: typeof filterTruthyFn;
1379
- filterByGuard: typeof filterByGuard;
1380
- filterByRefinement: typeof filterByRefinement;
1381
- filterBy: typeof filterBy;
1382
- partitionByGuard: typeof partitionByGuard;
1383
- assertType: typeof assertType;
1384
- assertDefined: typeof assertDefined;
1385
- assertNotNull: typeof assertNotNull;
1386
- assertCondition: typeof assertCondition;
1387
- createAssertion: typeof createAssertion;
1388
- narrowUnion: typeof narrowUnion;
1389
- createDiscriminantGuard: typeof createDiscriminantGuard;
1390
- switchUnion: typeof switchUnion;
1391
- exhaustiveCheck: typeof exhaustiveCheck;
1392
- excludeNull: typeof excludeNull;
1393
- excludeUndefined: typeof excludeUndefined;
1394
- excludeNullish: typeof excludeNullish;
1395
- withDefault: typeof withDefault;
1396
- withDefaultLazy: typeof withDefaultLazy;
1397
- mapNullable: typeof mapNullable;
1398
- chainNullable: typeof chainNullable;
1399
- refine: typeof refine;
1400
- oneOf: typeof oneOf;
1401
- allOf: typeof allOf;
1402
- not: typeof not;
1403
- arrayOf: typeof arrayOf;
1404
- objectOf: typeof objectOf;
1405
- createIterator: typeof createIterator;
1406
- lazyRange: typeof range;
1407
- lazyMap: typeof map;
1408
- lazyFilter: typeof filter;
1409
- lazyTake: typeof take;
1410
- lazySkip: typeof skip;
1411
- lazyChunk: typeof chunk;
1412
- lazyFlatten: typeof flatten;
1413
- lazyZip: typeof zip;
1414
- enumerate: typeof enumerate;
1415
- cycle: typeof cycle;
1416
- repeat: typeof repeat;
1417
- fromAsync: typeof fromAsync;
1418
- toArray: typeof toArray;
1419
- iterReduce: typeof reduce;
1420
- iterForEach: typeof forEach;
1421
- iterFind: typeof find;
1422
- iterSome: typeof some;
1423
- iterEvery: typeof every;
1424
- when: typeof when;
1425
- whenValue: typeof whenValue;
1426
- unless: typeof unless;
1427
- unlessValue: typeof unlessValue;
1428
- ifElse: typeof ifElse;
1429
- ifElseLazy: typeof ifElseLazy;
1430
- cond: typeof cond;
1431
- condLazy: typeof condLazy;
1432
- condBy: typeof condBy;
1433
- matchValue: typeof matchValue;
1434
- matchWithDefault: typeof matchWithDefault;
1435
- matchLazy: typeof matchLazy;
1436
- matchType: typeof matchType;
1437
- and: typeof and;
1438
- allTrue: typeof allTrue;
1439
- andThen: typeof andThen;
1440
- or: typeof or;
1441
- anyTrue: typeof anyTrue;
1442
- orThen: typeof orThen;
1443
- notFn: typeof notFn;
1444
- coalesce: typeof coalesce;
1445
- coalesceLazy: typeof coalesceLazy;
1446
- defaultTo: typeof defaultTo;
1447
- defaultToLazy: typeof defaultToLazy;
1448
- defaultToIf: typeof defaultToIf;
1449
- defaultToIfEmpty: typeof defaultToIfEmpty;
1450
- firstTruthy: typeof firstTruthy;
1451
- firstWhere: typeof firstWhere;
1452
- firstDefined: typeof firstDefined;
1453
- allTruthy: typeof allTruthy;
1454
- allWhere: typeof allWhere;
1455
- allDefined: typeof allDefined;
1456
- get: typeof get;
1457
- getTyped: typeof getTyped;
1458
- getPath: typeof getPath;
1459
- getOr: typeof getOr;
1460
- getPathOr: typeof getPathOr;
1461
- getOrLazy: typeof getOrLazy;
1462
- tryGet: typeof tryGet;
1463
- tryGetOr: typeof tryGetOr;
1464
- tryGetResult: typeof tryGetResult;
1465
- safe: typeof safe;
1466
- unwrap: typeof unwrap;
1467
- chain: typeof chain;
1468
- optionalOr: typeof optionalOr;
1469
- optionalChain: typeof optionalChain;
1470
- concat: typeof concat;
1471
- differenceBy: typeof differenceBy;
1472
- differenceWith: typeof differenceWith;
1473
- dropRight: typeof dropRight;
1474
- dropRightWhile: typeof dropRightWhile;
1475
- fill: typeof fill;
1476
- findIndex: typeof findIndex;
1477
- findLastIndex: typeof findLastIndex;
1478
- flattenDeep: typeof flattenDeep;
1479
- flattenDepth: typeof flattenDepth;
1480
- fromPairs: typeof fromPairs;
1481
- indexOf: typeof indexOf;
1482
- intersectionBy: typeof intersectionBy;
1483
- intersectionWith: typeof intersectionWith;
1484
- join: typeof join;
1485
- lastIndexOf: typeof lastIndexOf;
1486
- nth: typeof nth;
1487
- pull: typeof pull;
1488
- pullAll: typeof pullAll;
1489
- pullAllBy: typeof pullAllBy;
1490
- pullAllWith: typeof pullAllWith;
1491
- pullAt: typeof pullAt;
1492
- remove: typeof remove;
1493
- reverse: typeof reverse;
1494
- slice: typeof slice;
1495
- sortedIndex: typeof sortedIndex;
1496
- sortedIndexBy: typeof sortedIndexBy;
1497
- sortedIndexOf: typeof sortedIndexOf;
1498
- sortedLastIndex: typeof sortedLastIndex;
1499
- sortedLastIndexBy: typeof sortedLastIndexBy;
1500
- sortedLastIndexOf: typeof sortedLastIndexOf;
1501
- sortedUniq: typeof sortedUniq;
1502
- sortedUniqBy: typeof sortedUniqBy;
1503
- takeRight: typeof takeRight;
1504
- takeRightWhile: typeof takeRightWhile;
1505
- unionBy: typeof unionBy;
1506
- unionWith: typeof unionWith;
1507
- uniqBy: typeof uniqBy;
1508
- uniqWith: typeof uniqWith;
1509
- unzipWith: typeof unzipWith;
1510
- without: typeof without;
1511
- xor: typeof xor;
1512
- xorBy: typeof xorBy;
1513
- xorWith: typeof xorWith;
1514
- zipObject: typeof zipObject;
1515
- zipObjectDeep: typeof zipObjectDeep;
1516
- zipWith: typeof zipWith;
1517
- Memoize: typeof Memoize;
1518
- Debounce: typeof Debounce;
1519
- Throttle: typeof Throttle;
1520
- Bind: typeof Bind;
1521
- Log: typeof Log;
1522
- Measure: typeof Measure;
1523
- Retry: typeof Retry;
1524
- Deprecated: typeof Deprecated;
1525
- Sealed: typeof Sealed;
1526
- Frozen: typeof Frozen;
1527
- Validate: typeof Validate;
1528
- Lazy: typeof Lazy;
1529
- ok: typeof ok;
1530
- err: typeof err;
1531
- some: typeof some$1;
1532
- none: typeof none;
1533
- mapResult: typeof mapResult;
1534
- mapOption: typeof mapOption;
1535
- mapErr: typeof mapErr;
1536
- orElse: typeof orElse;
1537
- matchResult: typeof matchResult;
1538
- matchOption: typeof matchOption;
1539
- isOk: typeof isOk;
1540
- isErr: typeof isErr;
1541
- unwrapOption: typeof unwrapOption;
1542
- unwrapOr: typeof unwrapOr;
1543
- unwrapOptionOr: typeof unwrapOptionOr;
1544
- fromNullable: typeof fromNullable;
1545
- toNullable: typeof toNullable;
1546
- sum: typeof sum;
1547
- average: typeof average;
1548
- median: typeof median;
1549
- round: typeof round;
1550
- randomInt: typeof randomInt;
1551
- randomFloat: typeof randomFloat;
1552
- percentage: typeof percentage;
1553
- min: typeof min;
1554
- max: typeof max;
1555
- negate: typeof negate;
1556
- flip: typeof flip;
1557
- partial: typeof partial;
1558
- curry: typeof curry;
1559
- ary: typeof ary;
1560
- unary: typeof unary;
1561
- capitalize: typeof capitalize;
1562
- uncapitalize: typeof uncapitalize;
1563
- camelCase: typeof camelCase;
1564
- kebabCase: typeof kebabCase;
1565
- snakeCase: typeof snakeCase;
1566
- pascalCase: typeof pascalCase;
1567
- truncate: typeof truncate;
1568
- slugify: typeof slugify;
1569
- template: typeof template;
1570
- words: typeof words;
1571
- debug: typeof debug;
1572
- invariant: typeof invariant;
1573
- assertNever: typeof assertNever;
1574
- exhaustive: typeof exhaustive;
1575
- todo: typeof todo;
1576
- deprecated: typeof deprecated;
1577
- measure: typeof measure;
1578
- measureAsync: typeof measureAsync;
1579
- log: {
1391
+ readonly createEnv: typeof createEnv;
1392
+ readonly createContainer: typeof createContainer;
1393
+ readonly createTypedContainer: typeof createTypedContainer;
1394
+ readonly pipe: typeof pipe;
1395
+ readonly pipeAsync: typeof pipeAsync;
1396
+ readonly flow: typeof flow;
1397
+ readonly createMiddleware: typeof createMiddleware;
1398
+ readonly compose: typeof compose;
1399
+ readonly createEventBus: typeof createEventBus;
1400
+ readonly createTypedEmitter: typeof createTypedEmitter;
1401
+ readonly smartCache: typeof smartCache;
1402
+ readonly memoize: typeof memoize;
1403
+ readonly signal: typeof signal;
1404
+ readonly computed: typeof computed;
1405
+ readonly effect: typeof effect;
1406
+ readonly batch: typeof batch;
1407
+ readonly createUndoableState: typeof createUndoableState;
1408
+ readonly createAutoUndoableState: typeof createAutoUndoableState;
1409
+ readonly string: typeof string;
1410
+ readonly number: typeof number;
1411
+ readonly boolean: typeof boolean;
1412
+ readonly literal: typeof literal;
1413
+ readonly array: typeof array;
1414
+ readonly object: typeof object;
1415
+ readonly optional: typeof optional;
1416
+ readonly nullable: typeof nullable;
1417
+ readonly union: typeof union$1;
1418
+ readonly intersection: typeof intersection;
1419
+ readonly record: typeof record;
1420
+ readonly tuple: typeof tuple;
1421
+ readonly unknownSchema: typeof unknown;
1422
+ readonly anySchema: typeof any;
1423
+ readonly date: typeof date;
1424
+ readonly email: typeof email;
1425
+ readonly url: typeof url;
1426
+ readonly uuid: typeof uuid;
1427
+ readonly parse: typeof parse;
1428
+ readonly safeParse: typeof safeParse;
1429
+ readonly validate: typeof validate;
1430
+ readonly is: typeof is;
1431
+ readonly parseJson: typeof parseJson;
1432
+ readonly createGuard: typeof createGuard;
1433
+ readonly createParser: typeof createParser;
1434
+ readonly filterDefined: typeof filterDefined;
1435
+ readonly filterDefinedFn: typeof filterDefinedFn;
1436
+ readonly filterTruthy: typeof filterTruthy;
1437
+ readonly filterTruthyFn: typeof filterTruthyFn;
1438
+ readonly filterByGuard: typeof filterByGuard;
1439
+ readonly filterByRefinement: typeof filterByRefinement;
1440
+ readonly filterBy: typeof filterBy;
1441
+ readonly partitionByGuard: typeof partitionByGuard;
1442
+ readonly assertType: typeof assertType;
1443
+ readonly assertDefined: typeof assertDefined;
1444
+ readonly assertNotNull: typeof assertNotNull;
1445
+ readonly assertCondition: typeof assertCondition;
1446
+ readonly createAssertion: typeof createAssertion;
1447
+ readonly narrowUnion: typeof narrowUnion;
1448
+ readonly createDiscriminantGuard: typeof createDiscriminantGuard;
1449
+ readonly switchUnion: typeof switchUnion;
1450
+ readonly exhaustiveCheck: typeof exhaustiveCheck;
1451
+ readonly excludeNull: typeof excludeNull;
1452
+ readonly excludeUndefined: typeof excludeUndefined;
1453
+ readonly excludeNullish: typeof excludeNullish;
1454
+ readonly withDefault: typeof withDefault;
1455
+ readonly withDefaultLazy: typeof withDefaultLazy;
1456
+ readonly mapNullable: typeof mapNullable;
1457
+ readonly chainNullable: typeof chainNullable;
1458
+ readonly refine: typeof refine;
1459
+ readonly oneOf: typeof oneOf;
1460
+ readonly allOf: typeof allOf;
1461
+ readonly not: typeof not;
1462
+ readonly arrayOf: typeof arrayOf;
1463
+ readonly objectOf: typeof objectOf;
1464
+ readonly createIterator: typeof createIterator;
1465
+ readonly lazyRange: typeof range;
1466
+ readonly lazyMap: typeof map;
1467
+ readonly lazyFilter: typeof filter;
1468
+ readonly lazyTake: typeof take;
1469
+ readonly lazySkip: typeof skip;
1470
+ readonly lazyChunk: typeof chunk;
1471
+ readonly lazyFlatten: typeof flatten;
1472
+ readonly lazyZip: typeof zip;
1473
+ readonly enumerate: typeof enumerate;
1474
+ readonly cycle: typeof cycle;
1475
+ readonly repeat: typeof repeat;
1476
+ readonly fromAsync: typeof fromAsync;
1477
+ readonly toArray: typeof toArray;
1478
+ readonly iterReduce: typeof reduce;
1479
+ readonly iterForEach: typeof forEach;
1480
+ readonly iterFind: typeof find;
1481
+ readonly iterSome: typeof some;
1482
+ readonly iterEvery: typeof every;
1483
+ readonly when: typeof when;
1484
+ readonly whenValue: typeof whenValue;
1485
+ readonly unless: typeof unless;
1486
+ readonly unlessValue: typeof unlessValue;
1487
+ readonly ifElse: typeof ifElse;
1488
+ readonly ifElseLazy: typeof ifElseLazy;
1489
+ readonly cond: typeof cond;
1490
+ readonly condLazy: typeof condLazy;
1491
+ readonly condBy: typeof condBy;
1492
+ readonly matchValue: typeof matchValue;
1493
+ readonly matchWithDefault: typeof matchWithDefault;
1494
+ readonly matchLazy: typeof matchLazy;
1495
+ readonly matchType: typeof matchType;
1496
+ readonly and: typeof and;
1497
+ readonly allTrue: typeof allTrue;
1498
+ readonly andThen: typeof andThen;
1499
+ readonly or: typeof or;
1500
+ readonly anyTrue: typeof anyTrue;
1501
+ readonly orThen: typeof orThen;
1502
+ readonly notFn: typeof notFn;
1503
+ readonly coalesce: typeof coalesce;
1504
+ readonly coalesceLazy: typeof coalesceLazy;
1505
+ readonly defaultTo: typeof defaultTo;
1506
+ readonly defaultToLazy: typeof defaultToLazy;
1507
+ readonly defaultToIf: typeof defaultToIf;
1508
+ readonly defaultToIfEmpty: typeof defaultToIfEmpty;
1509
+ readonly firstTruthy: typeof firstTruthy;
1510
+ readonly firstWhere: typeof firstWhere;
1511
+ readonly firstDefined: typeof firstDefined;
1512
+ readonly allTruthy: typeof allTruthy;
1513
+ readonly allWhere: typeof allWhere;
1514
+ readonly allDefined: typeof allDefined;
1515
+ readonly get: typeof get;
1516
+ readonly getTyped: typeof getTyped;
1517
+ readonly getPath: typeof getPath;
1518
+ readonly getOr: typeof getOr;
1519
+ readonly getPathOr: typeof getPathOr;
1520
+ readonly getOrLazy: typeof getOrLazy;
1521
+ readonly tryGet: typeof tryGet;
1522
+ readonly tryGetOr: typeof tryGetOr;
1523
+ readonly tryGetResult: typeof tryGetResult;
1524
+ readonly safe: typeof safe;
1525
+ readonly unwrap: typeof unwrap;
1526
+ readonly chain: typeof chain;
1527
+ readonly optionalOr: typeof optionalOr;
1528
+ readonly optionalChain: typeof optionalChain;
1529
+ readonly concat: typeof concat;
1530
+ readonly differenceBy: typeof differenceBy;
1531
+ readonly differenceWith: typeof differenceWith;
1532
+ readonly dropRight: typeof dropRight;
1533
+ readonly dropRightWhile: typeof dropRightWhile;
1534
+ readonly fill: typeof fill;
1535
+ readonly findIndex: typeof findIndex;
1536
+ readonly findLastIndex: typeof findLastIndex;
1537
+ readonly flattenDeep: typeof flattenDeep;
1538
+ readonly flattenDepth: typeof flattenDepth;
1539
+ readonly fromPairs: typeof fromPairs;
1540
+ readonly indexOf: typeof indexOf;
1541
+ readonly intersectionBy: typeof intersectionBy;
1542
+ readonly intersectionWith: typeof intersectionWith;
1543
+ readonly join: typeof join;
1544
+ readonly lastIndexOf: typeof lastIndexOf;
1545
+ readonly nth: typeof nth;
1546
+ readonly pull: typeof pull;
1547
+ readonly pullAll: typeof pullAll;
1548
+ readonly pullAllBy: typeof pullAllBy;
1549
+ readonly pullAllWith: typeof pullAllWith;
1550
+ readonly pullAt: typeof pullAt;
1551
+ readonly remove: typeof remove;
1552
+ readonly reverse: typeof reverse;
1553
+ readonly slice: typeof slice;
1554
+ readonly sortedIndex: typeof sortedIndex;
1555
+ readonly sortedIndexBy: typeof sortedIndexBy;
1556
+ readonly sortedIndexOf: typeof sortedIndexOf;
1557
+ readonly sortedLastIndex: typeof sortedLastIndex;
1558
+ readonly sortedLastIndexBy: typeof sortedLastIndexBy;
1559
+ readonly sortedLastIndexOf: typeof sortedLastIndexOf;
1560
+ readonly sortedUniq: typeof sortedUniq;
1561
+ readonly sortedUniqBy: typeof sortedUniqBy;
1562
+ readonly takeRight: typeof takeRight;
1563
+ readonly takeRightWhile: typeof takeRightWhile;
1564
+ readonly unionBy: typeof unionBy;
1565
+ readonly unionWith: typeof unionWith;
1566
+ readonly uniqBy: typeof uniqBy;
1567
+ readonly uniqWith: typeof uniqWith;
1568
+ readonly unzipWith: typeof unzipWith;
1569
+ readonly without: typeof without;
1570
+ readonly xor: typeof xor;
1571
+ readonly xorBy: typeof xorBy;
1572
+ readonly xorWith: typeof xorWith;
1573
+ readonly zipObject: typeof zipObject;
1574
+ readonly zipObjectDeep: typeof zipObjectDeep;
1575
+ readonly zipWith: typeof zipWith;
1576
+ readonly Memoize: typeof Memoize;
1577
+ readonly Debounce: typeof Debounce;
1578
+ readonly Throttle: typeof Throttle;
1579
+ readonly Bind: typeof Bind;
1580
+ readonly Log: typeof Log;
1581
+ readonly Measure: typeof Measure;
1582
+ readonly Retry: typeof Retry;
1583
+ readonly Deprecated: typeof Deprecated;
1584
+ readonly Sealed: typeof Sealed;
1585
+ readonly Frozen: typeof Frozen;
1586
+ readonly Validate: typeof Validate;
1587
+ readonly Lazy: typeof Lazy;
1588
+ readonly ok: typeof ok;
1589
+ readonly err: typeof err;
1590
+ readonly some: typeof some$1;
1591
+ readonly none: typeof none;
1592
+ readonly mapResult: typeof mapResult;
1593
+ readonly mapOption: typeof mapOption;
1594
+ readonly mapErr: typeof mapErr;
1595
+ readonly orElse: typeof orElse;
1596
+ readonly matchResult: typeof matchResult;
1597
+ readonly matchOption: typeof matchOption;
1598
+ readonly isOk: typeof isOk;
1599
+ readonly isErr: typeof isErr;
1600
+ readonly unwrapOption: typeof unwrapOption;
1601
+ readonly unwrapOr: typeof unwrapOr;
1602
+ readonly unwrapOptionOr: typeof unwrapOptionOr;
1603
+ readonly fromNullable: typeof fromNullable;
1604
+ readonly toNullable: typeof toNullable;
1605
+ readonly sum: typeof sum;
1606
+ readonly average: typeof average;
1607
+ readonly median: typeof median;
1608
+ readonly round: typeof round;
1609
+ readonly randomInt: typeof randomInt;
1610
+ readonly randomFloat: typeof randomFloat;
1611
+ readonly percentage: typeof percentage;
1612
+ readonly min: typeof min;
1613
+ readonly max: typeof max;
1614
+ readonly negate: typeof negate;
1615
+ readonly flip: typeof flip;
1616
+ readonly partial: typeof partial;
1617
+ readonly curry: typeof curry;
1618
+ readonly ary: typeof ary;
1619
+ readonly unary: typeof unary;
1620
+ readonly capitalize: typeof capitalize;
1621
+ readonly uncapitalize: typeof uncapitalize;
1622
+ readonly camelCase: typeof camelCase;
1623
+ readonly kebabCase: typeof kebabCase;
1624
+ readonly snakeCase: typeof snakeCase;
1625
+ readonly pascalCase: typeof pascalCase;
1626
+ readonly truncate: typeof truncate;
1627
+ readonly slugify: typeof slugify;
1628
+ readonly template: typeof template;
1629
+ readonly words: typeof words;
1630
+ readonly deburr: typeof deburr;
1631
+ readonly escape: typeof escape;
1632
+ readonly unescape: typeof unescape;
1633
+ readonly escapeRegExp: typeof escapeRegExp;
1634
+ readonly pad: typeof pad;
1635
+ readonly padStart: typeof padStart;
1636
+ readonly padEnd: typeof padEnd;
1637
+ readonly debug: typeof debug;
1638
+ readonly invariant: typeof invariant;
1639
+ readonly assertNever: typeof assertNever;
1640
+ readonly exhaustive: typeof exhaustive;
1641
+ readonly todo: typeof todo;
1642
+ readonly deprecated: typeof deprecated;
1643
+ readonly measure: typeof measure;
1644
+ readonly measureAsync: typeof measureAsync;
1645
+ readonly log: {
1580
1646
  debug(message: string, ...args: unknown[]): void;
1581
1647
  info(message: string, ...args: unknown[]): void;
1582
1648
  warn(message: string, ...args: unknown[]): void;
1583
1649
  error(message: string, ...args: unknown[]): void;
1584
1650
  };
1585
- setLogLevel: typeof setLogLevel;
1586
- getLogLevel: typeof getLogLevel;
1587
- tap: typeof tap;
1588
- match: typeof match;
1589
- tryCatch: typeof tryCatch;
1590
- tryCatchAsync: typeof tryCatchAsync;
1591
- constant: typeof constant;
1592
- safeJsonParse: typeof safeJsonParse;
1593
- safeJsonStringify: typeof safeJsonStringify;
1594
- parseNumber: typeof parseNumber;
1595
- parseInteger: typeof parseInteger;
1596
- parseBoolean: typeof parseBoolean;
1597
- parseDate: typeof parseDate;
1598
- coerceString: typeof coerceString;
1599
- coerceArray: typeof coerceArray;
1600
- trimAll: typeof trimAll;
1601
- defaults: typeof defaults;
1602
- clamp: typeof clamp;
1603
- isEmail: typeof isEmail;
1604
- isUrl: typeof isUrl;
1605
- isUuid: typeof isUuid;
1606
- isIpAddress: typeof isIpAddress;
1607
- parseUrl: typeof parseUrl;
1608
- unique: typeof unique;
1609
- groupBy: typeof groupBy;
1610
- indexBy: typeof indexBy;
1611
- partition: typeof partition;
1612
- chunk: typeof chunk$1;
1613
- compact: typeof compact;
1614
- flatten: typeof flatten$1;
1615
- sortBy: typeof sortBy;
1616
- first: typeof first;
1617
- last: typeof last;
1618
- range: typeof range$1;
1619
- shuffle: typeof shuffle;
1620
- sample: typeof sample;
1621
- zip: typeof zip$1;
1622
- unzip: typeof unzip;
1623
- difference: typeof difference;
1624
- take: typeof take$1;
1625
- drop: typeof drop;
1626
- takeWhile: typeof takeWhile;
1627
- dropWhile: typeof dropWhile;
1628
- findLast: typeof findLast;
1629
- countBy: typeof countBy;
1630
- maxBy: typeof maxBy;
1631
- minBy: typeof minBy;
1632
- sumBy: typeof sumBy;
1633
- head: typeof head;
1634
- tail: typeof tail;
1635
- init: typeof init;
1636
- awaitTo: typeof awaitTo;
1637
- sleep: typeof sleep;
1638
- withTimeout: typeof withTimeout;
1639
- retry: typeof retry;
1640
- debounce: typeof debounce;
1641
- throttle: typeof throttle;
1642
- once: typeof once;
1643
- onceAsync: typeof onceAsync;
1644
- defer: typeof defer;
1645
- parallel: typeof parallel;
1646
- pick: typeof pick;
1647
- omit: typeof omit;
1648
- keysTyped: typeof keysTyped;
1649
- valuesTyped: typeof valuesTyped;
1650
- entriesTyped: typeof entriesTyped;
1651
- fromEntriesTyped: typeof fromEntriesTyped;
1652
- mapObject: typeof mapObject;
1653
- filterObject: typeof filterObject;
1654
- mergeShallow: typeof mergeShallow;
1655
- clone: typeof clone;
1656
- cloneDeep: typeof cloneDeep;
1657
- set: typeof set;
1658
- invert: typeof invert;
1659
- deepMerge: typeof deepMerge;
1660
- isEqual: typeof isEqual;
1661
- has: typeof has;
1662
- unset: typeof unset;
1663
- paths: typeof paths;
1664
- transform: typeof transform;
1665
- deepGet: typeof deepGet;
1666
- deepGetOr: typeof deepGetOr;
1667
- deepSet: typeof deepSet;
1668
- deepHas: typeof deepHas;
1669
- deepPath: typeof deepPath;
1670
- deepPluck: typeof deepPluck;
1671
- isObject: typeof isObject;
1672
- isPlainObject: typeof isPlainObject;
1673
- isString: typeof isString;
1674
- isNumber: typeof isNumber;
1675
- isBoolean: typeof isBoolean;
1676
- isFunction: typeof isFunction;
1677
- isArray: typeof isArray;
1678
- isDate: typeof isDate;
1679
- isPromise: typeof isPromise;
1680
- isError: typeof isError;
1681
- isSymbol: typeof isSymbol;
1682
- hasKey: typeof hasKey;
1683
- hasKeys: typeof hasKeys;
1684
- isEmpty: typeof isEmpty;
1685
- isNonEmpty: typeof isNonEmpty;
1686
- castArray: typeof castArray;
1687
- cloneWith: typeof cloneWith;
1688
- cloneDeepWith: typeof cloneDeepWith;
1689
- conformsTo: typeof conformsTo;
1690
- eq: typeof eq;
1691
- gt: typeof gt;
1692
- gte: typeof gte;
1693
- lt: typeof lt;
1694
- lte: typeof lte;
1695
- isArguments: typeof isArguments;
1696
- isArrayBuffer: typeof isArrayBuffer;
1697
- isArrayLike: typeof isArrayLike;
1698
- isArrayLikeObject: typeof isArrayLikeObject;
1699
- isBuffer: typeof isBuffer;
1700
- isElement: typeof isElement;
1701
- isEqualWith: typeof isEqualWith;
1702
- isFinite: typeof isFinite;
1703
- isInteger: typeof isInteger;
1704
- isLength: typeof isLength;
1705
- isMap: typeof isMap;
1706
- isMatch: typeof isMatch;
1707
- isMatchWith: typeof isMatchWith;
1708
- isNaN: typeof isNaN;
1709
- isNative: typeof isNative;
1710
- isNull: typeof isNull;
1711
- isUndefined: typeof isUndefined;
1712
- isObjectLike: typeof isObjectLike;
1713
- isRegExp: typeof isRegExp;
1714
- isSafeInteger: typeof isSafeInteger;
1715
- isSet: typeof isSet;
1716
- isTypedArray: typeof isTypedArray;
1717
- isWeakMap: typeof isWeakMap;
1718
- isWeakSet: typeof isWeakSet;
1719
- toFinite: typeof toFinite;
1720
- toInteger: typeof toInteger;
1721
- toLength: typeof toLength;
1722
- toNumber: typeof toNumber;
1723
- toPlainObject: typeof toPlainObject;
1724
- toSafeInteger: typeof toSafeInteger;
1725
- toString: typeof toString;
1726
- isDefined: typeof isDefined;
1727
- isNil: typeof isNil;
1728
- assert: typeof assert;
1729
- fail: typeof fail;
1730
- noop: typeof noop;
1731
- identity: typeof identity;
1732
- unreachable: typeof unreachable;
1651
+ readonly setLogLevel: typeof setLogLevel;
1652
+ readonly getLogLevel: typeof getLogLevel;
1653
+ readonly tap: typeof tap;
1654
+ readonly match: typeof match;
1655
+ readonly tryCatch: typeof tryCatch;
1656
+ readonly tryCatchAsync: typeof tryCatchAsync;
1657
+ readonly constant: typeof constant;
1658
+ readonly safeJsonParse: typeof safeJsonParse;
1659
+ readonly safeJsonStringify: typeof safeJsonStringify;
1660
+ readonly parseNumber: typeof parseNumber;
1661
+ readonly parseInteger: typeof parseInteger;
1662
+ readonly parseBoolean: typeof parseBoolean;
1663
+ readonly parseDate: typeof parseDate;
1664
+ readonly coerceString: typeof coerceString;
1665
+ readonly coerceArray: typeof coerceArray;
1666
+ readonly trimAll: typeof trimAll;
1667
+ readonly defaults: typeof defaults;
1668
+ readonly clamp: typeof clamp;
1669
+ readonly isEmail: typeof isEmail;
1670
+ readonly isUrl: typeof isUrl;
1671
+ readonly isUuid: typeof isUuid;
1672
+ readonly isIpAddress: typeof isIpAddress;
1673
+ readonly parseUrl: typeof parseUrl;
1674
+ readonly unique: typeof unique;
1675
+ readonly groupBy: typeof groupBy;
1676
+ readonly indexBy: typeof indexBy;
1677
+ readonly partition: typeof partition;
1678
+ readonly chunk: typeof chunk$1;
1679
+ readonly compact: typeof compact;
1680
+ readonly flatten: typeof flatten$1;
1681
+ readonly sortBy: typeof sortBy;
1682
+ readonly first: typeof first;
1683
+ readonly last: typeof last;
1684
+ readonly range: typeof range$1;
1685
+ readonly shuffle: typeof shuffle;
1686
+ readonly sample: typeof sample;
1687
+ readonly zip: typeof zip$1;
1688
+ readonly unzip: typeof unzip;
1689
+ readonly difference: typeof difference;
1690
+ readonly take: typeof take$1;
1691
+ readonly drop: typeof drop;
1692
+ readonly takeWhile: typeof takeWhile;
1693
+ readonly dropWhile: typeof dropWhile;
1694
+ readonly findLast: typeof findLast;
1695
+ readonly countBy: typeof countBy;
1696
+ readonly maxBy: typeof maxBy;
1697
+ readonly minBy: typeof minBy;
1698
+ readonly sumBy: typeof sumBy;
1699
+ readonly head: typeof head;
1700
+ readonly tail: typeof tail;
1701
+ readonly init: typeof init;
1702
+ readonly reject: typeof reject;
1703
+ readonly size: typeof size;
1704
+ readonly keyBy: typeof keyBy;
1705
+ readonly sampleSize: typeof sampleSize;
1706
+ readonly awaitTo: typeof awaitTo;
1707
+ readonly sleep: typeof sleep;
1708
+ readonly withTimeout: typeof withTimeout;
1709
+ readonly retry: typeof retry;
1710
+ readonly debounce: typeof debounce;
1711
+ readonly throttle: typeof throttle;
1712
+ readonly onceAsync: typeof onceAsync;
1713
+ readonly defer: typeof defer;
1714
+ readonly parallel: typeof parallel;
1715
+ readonly pick: typeof pick;
1716
+ readonly omit: typeof omit;
1717
+ readonly keysTyped: typeof keysTyped;
1718
+ readonly valuesTyped: typeof valuesTyped;
1719
+ readonly entriesTyped: typeof entriesTyped;
1720
+ readonly fromEntriesTyped: typeof fromEntriesTyped;
1721
+ readonly mapObject: typeof mapObject;
1722
+ readonly filterObject: typeof filterObject;
1723
+ readonly mergeShallow: typeof mergeShallow;
1724
+ readonly clone: typeof clone;
1725
+ readonly cloneDeep: typeof cloneDeep;
1726
+ readonly set: typeof set;
1727
+ readonly deepMerge: typeof deepMerge;
1728
+ readonly isEqual: typeof isEqual;
1729
+ readonly has: typeof has;
1730
+ readonly unset: typeof unset;
1731
+ readonly paths: typeof paths;
1732
+ readonly transform: typeof transform;
1733
+ readonly deepGet: typeof deepGet;
1734
+ readonly deepGetOr: typeof deepGetOr;
1735
+ readonly deepSet: typeof deepSet;
1736
+ readonly deepHas: typeof deepHas;
1737
+ readonly deepPath: typeof deepPath;
1738
+ readonly deepPluck: typeof deepPluck;
1739
+ readonly findKey: typeof findKey;
1740
+ readonly findLastKey: typeof findLastKey;
1741
+ readonly at: typeof at;
1742
+ readonly invertBy: typeof invertBy;
1743
+ readonly isObject: typeof isObject;
1744
+ readonly isPlainObject: typeof isPlainObject;
1745
+ readonly isString: typeof isString;
1746
+ readonly isNumber: typeof isNumber;
1747
+ readonly isBoolean: typeof isBoolean;
1748
+ readonly isFunction: typeof isFunction;
1749
+ readonly isArray: typeof isArray;
1750
+ readonly isDate: typeof isDate;
1751
+ readonly isPromise: typeof isPromise;
1752
+ readonly isError: typeof isError;
1753
+ readonly isSymbol: typeof isSymbol;
1754
+ readonly hasKey: typeof hasKey;
1755
+ readonly hasKeys: typeof hasKeys;
1756
+ readonly isEmpty: typeof isEmpty;
1757
+ readonly isNonEmpty: typeof isNonEmpty;
1758
+ readonly castArray: typeof castArray;
1759
+ readonly cloneWith: typeof cloneWith;
1760
+ readonly cloneDeepWith: typeof cloneDeepWith;
1761
+ readonly conformsTo: typeof conformsTo;
1762
+ readonly eq: typeof eq;
1763
+ readonly gt: typeof gt;
1764
+ readonly gte: typeof gte;
1765
+ readonly lt: typeof lt;
1766
+ readonly lte: typeof lte;
1767
+ readonly isArguments: typeof isArguments;
1768
+ readonly isArrayBuffer: typeof isArrayBuffer;
1769
+ readonly isArrayLike: typeof isArrayLike;
1770
+ readonly isArrayLikeObject: typeof isArrayLikeObject;
1771
+ readonly isBuffer: typeof isBuffer;
1772
+ readonly isElement: typeof isElement;
1773
+ readonly isEqualWith: typeof isEqualWith;
1774
+ readonly isFinite: typeof isFinite;
1775
+ readonly isInteger: typeof isInteger;
1776
+ readonly isLength: typeof isLength;
1777
+ readonly isMap: typeof isMap;
1778
+ readonly isMatch: typeof isMatch;
1779
+ readonly isMatchWith: typeof isMatchWith;
1780
+ readonly isNaN: typeof isNaN;
1781
+ readonly isNative: typeof isNative;
1782
+ readonly isNull: typeof isNull;
1783
+ readonly isUndefined: typeof isUndefined;
1784
+ readonly isObjectLike: typeof isObjectLike;
1785
+ readonly isRegExp: typeof isRegExp;
1786
+ readonly isSafeInteger: typeof isSafeInteger;
1787
+ readonly isSet: typeof isSet;
1788
+ readonly isTypedArray: typeof isTypedArray;
1789
+ readonly isWeakMap: typeof isWeakMap;
1790
+ readonly isWeakSet: typeof isWeakSet;
1791
+ readonly toFinite: typeof toFinite;
1792
+ readonly toInteger: typeof toInteger;
1793
+ readonly toLength: typeof toLength;
1794
+ readonly toNumber: typeof toNumber;
1795
+ readonly toPlainObject: typeof toPlainObject;
1796
+ readonly toSafeInteger: typeof toSafeInteger;
1797
+ readonly toString: typeof toString;
1798
+ readonly isDefined: typeof isDefined;
1799
+ readonly isNil: typeof isNil;
1800
+ readonly assert: typeof assert;
1801
+ readonly fail: typeof fail;
1802
+ readonly noop: typeof noop;
1803
+ readonly identity: typeof identity;
1804
+ readonly unreachable: typeof unreachable;
1733
1805
  };
1734
1806
 
1735
- export { Bind, type CacheOptions, type Container, Debounce, Deprecated, type EventBus, type FeatureFlags, type FieldState, type FormState, Frozen, Lazy, Log, Measure, Memoize, type Middleware, type MiddlewarePipeline, type ReadonlySignal, Retry, type Route, type Router, Sealed, type Signal, Throttle, type UndoableOptions, type UndoableState, Validate, _, ary, assert, assertNever, average, awaitTo, batch, camelCase, capitalize, castArray, chunk$1 as chunk, clamp, clone, cloneDeep, cloneDeepWith, cloneWith, coerceArray, coerceString, compact, compose as composeMiddleware, computed, concat, conformsTo, constant, countBy, createAutoUndoableState, createContainer, createEnv, createEventBus, createFeatureFlags, createForm, createMiddleware, createRouter, createTypedContainer, createTypedEmitter, createUndoableState, curry, debounce, debug, deepMerge, _ as default, defaults, defer, deprecated, difference, differenceBy, differenceWith, drop, dropRight, dropRightWhile, dropWhile, effect, entriesTyped, env, eq, err, exhaustive, fail, field, fill, filterObject, findIndex, findLast, findLastIndex, first, flag, flatten$1 as flatten, flattenDeep, flattenDepth, flip, flow, fromEntriesTyped, fromNullable, fromPairs, getLogLevel, groupBy, gt, gte, has, hasKey, hasKeys, head, identity, indexBy, indexOf, init, intersectionBy, intersectionWith, invariant, invert, isArguments, isArray, isArrayBuffer, isArrayLike, isArrayLikeObject, isBoolean, isBuffer, isDate, isDefined, isElement, isEmail, isEmpty, isEqual, isEqualWith, isErr, isError, isFinite, isFunction, isInteger, isIpAddress, isLength, isMap, isMatch, isMatchWith, isNaN, isNative, isNil, isNonEmpty, isNull, isNumber, isObject, isObjectLike, isOk, isPlainObject, isPromise, isRegExp, isSafeInteger, isSet, isString, isSymbol, isTypedArray, isUndefined, isUrl, isUuid, isWeakMap, isWeakSet, join, kebabCase, keysTyped, last, lastIndexOf, lt, lte, mapErr, mapObject, mapOption, mapResult, match, matchOption, matchResult, max, maxBy, measure, measureAsync, median, mergeShallow, min, minBy, negate, none, noop, nth, ok, omit, once, onceAsync, orElse, parallel, parseBoolean, parseDate, parseInteger, parseNumber, parseUrl, partial, partition, pascalCase, paths, percentage, pick, pipeAsync, pipe as pipeValue, pull, pullAll, pullAllBy, pullAllWith, pullAt, randomFloat, randomInt, range$1 as range, remove, retry, reverse, round, route, safeJsonParse, safeJsonStringify, sample, set, setLogLevel, shuffle, signal, sleep, slice, slugify, smartCache, memoize as smartMemoize, snakeCase, some$1 as some, sortBy, sortedIndex, sortedIndexBy, sortedIndexOf, sortedLastIndex, sortedLastIndexBy, sortedLastIndexOf, sortedUniq, sortedUniqBy, sum, sumBy, tail, take$1 as take, takeRight, takeRightWhile, takeWhile, tap, template, throttle, toFinite, toInteger, toLength, toNullable, toNumber, toPlainObject, toSafeInteger, toString, todo, transform, trimAll, truncate, tryCatch, tryCatchAsync, unary, uncapitalize, union, unionBy, unionWith, uniqBy, uniqWith, unique, unreachable, unset, unwrapOption, unwrapOptionOr, unwrapOr, unzip, unzipWith, valuesTyped, withTimeout, without, words, xor, xorBy, xorWith, zip$1 as zip, zipObject, zipObjectDeep, zipWith };
1807
+ export { Bind, type CacheOptions, type Container, Debounce, Deprecated, type EventBus, type FeatureFlags, type FieldState, type FormState, Frozen, Lazy, Log, Measure, Memoize, type Middleware, type MiddlewarePipeline, type ReadonlySignal, Retry, type Route, type Router, Sealed, type Signal, Throttle, type UndoableOptions, type UndoableState, Validate, _, addClass, addEventListener, ary, assert, assertNever, at, average, awaitTo, batch, camelCase, capitalize, castArray, chunk$1 as chunk, clamp, classNames, clone, cloneDeep, cloneDeepWith, cloneWith, coerceArray, coerceString, compact, compose as composeMiddleware, computed, concat, conformsTo, constant, contrast, countBy, createAutoUndoableState, createContainer, createEnv, createEventBus, createFeatureFlags, createForm, createMemoryStorage, createMiddleware, createRouter, createStorage, createTypedContainer, createTypedEmitter, createUndoableState, curry, darken, debounce, debug, deburr, deepMerge, _ as default, defaults, defer, delegate, deprecated, desaturate, difference, differenceBy, differenceWith, drop, dropRight, dropRightWhile, dropWhile, effect, entriesTyped, env, eq, err, escape, escapeRegExp, exhaustive, fail, field, fill, filterObject, findIndex, findKey, findLast, findLastIndex, findLastKey, first, flag, flatten$1 as flatten, flattenDeep, flattenDepth, flip, flow, formatHsl, formatRgb, fromEntriesTyped, fromNullable, fromPairs, getComputedStyleValue, getComputedStyles, getContrastColor, getCookie, getDominant, getLogLevel, getRect, getScrollPosition, getTemperature, grayscale, groupBy, gt, gte, has, hasClass, hasCookie, hasKey, hasKeys, head, hexToRgb, hide, hslToRgb, identity, indexBy, indexOf, init, intersectionBy, intersectionWith, invariant, invertBy, invert as invertColor, isArguments, isArray, isArrayBuffer, isArrayLike, isArrayLikeObject, isBoolean, isBuffer, isDark, isDate, isDefined, isElement, isEmail, isEmpty, isEqual, isEqualWith, isErr, isError, isFinite, isFunction, isInViewport, isInteger, isIpAddress, isLength, isLight, isMap, isMatch, isMatchWith, isNaN, isNative, isNil, isNonEmpty, isNull, isNumber, isObject, isObjectLike, isOk, isPlainObject, isPromise, isRegExp, isSafeInteger, isSet, isSimilar, isString, isSymbol, isTypedArray, isUndefined, isUrl, isUuid, isWeakMap, isWeakSet, join, kebabCase, keyBy, keysTyped, last, lastIndexOf, lighten, localStorageTyped, lt, lte, luminance, mapErr, mapObject, mapOption, mapResult, match, matchOption, matchResult, max, maxBy, measure, measureAsync, median, mergeShallow, min, minBy, mix, negate, none, noop, nth, ok, omit, onceAsync, once as onceEvent, opacity, orElse, pad, padEnd, padStart, parallel, parseBoolean, parseColor, parseDate, parseInteger, parseNumber, parseUrl, partial, partition, pascalCase, paths, percentage, pick, pipeAsync, pipe as pipeValue, pull, pullAll, pullAllBy, pullAllWith, pullAt, querySelector, querySelectorAll, randomFloat, randomInt, range$1 as range, reject, remove, removeClass, removeCookie, retry, reverse, rgbToHex, rgbToHsl, round, route, safeJsonParse, safeJsonStringify, sample, sampleSize, saturate, scrollIntoView, scrollTo, sessionStorageTyped, set, setCookie, setLogLevel, setStyle, setStyles, show, shuffle, signal, size, sleep, slice, slugify, smartCache, memoize as smartMemoize, snakeCase, some$1 as some, sortBy, sortedIndex, sortedIndexBy, sortedIndexOf, sortedLastIndex, sortedLastIndexBy, sortedLastIndexOf, sortedUniq, sortedUniqBy, sum, sumBy, tail, take$1 as take, takeRight, takeRightWhile, takeWhile, tap, template, throttle, toFinite, toInteger, toLength, toNullable, toNumber, toPlainObject, toSafeInteger, toString, todo, toggle, toggleClass, transform, trimAll, truncate, tryCatch, tryCatchAsync, unary, uncapitalize, unescape, union, unionBy, unionWith, uniqBy, uniqWith, unique, unreachable, unset, unwrapOption, unwrapOptionOr, unwrapOr, unzip, unzipWith, valuesTyped, withExpiry, withTimeout, without, words, xor, xorBy, xorWith, zip$1 as zip, zipObject, zipObjectDeep, zipWith };