export { debounce, throttle } from 'throttle-debounce'; /** * Promise, or maybe not */ declare type Awaitable = T | PromiseLike; /** * Null or whatever */ declare type Nullable = T | null | undefined; /** * Array, or not yet */ declare type Arrayable = T | Array; /** * Function */ declare type Fn = () => T; /** * Constructor */ declare type Constructor = new (...args: any[]) => T; /** * Infers the element type of an array */ declare type ElementOf = T extends (infer E)[] ? E : never; /** * Defines an intersection type of all union items. * * @param U Union of any types that will be intersected. * @returns U items intersected * @see https://stackoverflow.com/a/50375286/9259330 */ declare type UnionToIntersection = (U extends unknown ? (k: U) => void : never) extends ((k: infer I) => void) ? I : never; /** * Infers the arguments type of a function */ declare type ArgumentsType = T extends ((...args: infer A) => any) ? A : never; declare type MergeInsertions = T extends object ? { [K in keyof T]: MergeInsertions; } : T; declare type DeepMerge = MergeInsertions<{ [K in keyof F | keyof S]: K extends keyof S & keyof F ? DeepMerge : K extends keyof S ? S[K] : K extends keyof F ? F[K] : never; }>; /** * Convert `Arrayable` to `Array` * * @category Array */ declare function toArray(array?: Nullable>): Array; /** * Convert `Arrayable` to `Array` and flatten it * * @category Array */ declare function flattenArrayable(array?: Nullable>>): Array; /** * Use rest arguments to merge arrays * * @category Array */ declare function mergeArrayable(...args: Nullable>[]): Array; declare type PartitionFilter = (i: T, idx: number, arr: readonly T[]) => any; /** * Divide an array into two parts by a filter function * * @category Array * @example const [odd, even] = partition([1, 2, 3, 4], i => i % 2 != 0) */ declare function partition(array: readonly T[], f1: PartitionFilter): [T[], T[]]; declare function partition(array: readonly T[], f1: PartitionFilter, f2: PartitionFilter): [T[], T[], T[]]; declare function partition(array: readonly T[], f1: PartitionFilter, f2: PartitionFilter, f3: PartitionFilter): [T[], T[], T[], T[]]; declare function partition(array: readonly T[], f1: PartitionFilter, f2: PartitionFilter, f3: PartitionFilter, f4: PartitionFilter): [T[], T[], T[], T[], T[]]; declare function partition(array: readonly T[], f1: PartitionFilter, f2: PartitionFilter, f3: PartitionFilter, f4: PartitionFilter, f5: PartitionFilter): [T[], T[], T[], T[], T[], T[]]; declare function partition(array: readonly T[], f1: PartitionFilter, f2: PartitionFilter, f3: PartitionFilter, f4: PartitionFilter, f5: PartitionFilter, f6: PartitionFilter): [T[], T[], T[], T[], T[], T[], T[]]; /** * Unique an Array * * @category Array */ declare function uniq(array: readonly T[]): T[]; /** * Get last item * * @category Array */ declare function last(array: readonly []): undefined; declare function last(array: readonly T[]): T; /** * Remove an item from Array * * @category Array */ declare function remove(array: T[], value: T): boolean; /** * Get nth item of Array. Negative for backward * * @category Array */ declare function at(array: readonly [], index: number): undefined; declare function at(array: readonly T[], index: number): T; /** * Genrate a range array of numbers. The `stop` is exclusive. * * @category Array */ declare function range(stop: number): number[]; declare function range(start: number, stop: number, step?: number): number[]; /** * Move element in an Array * * @category Array * @param arr * @param from * @param to */ declare function move(arr: T[], from: number, to: number): T[]; /** * Clamp a number to the index ranage of an array * * @category Array */ declare function clampArrayRange(n: number, arr: readonly unknown[]): number; declare const assert: (condition: boolean, message: string) => asserts condition; declare const toString: (v: any) => string; declare const noop: () => void; /** * Type guard to filter out null-ish values * * @category Guards * @example array.filter(notNullish) */ declare function notNullish(v: T | null | undefined): v is NonNullable; /** * Type guard to filter out null values * * @category Guards * @example array.filter(noNull) */ declare function noNull(v: T | null): v is Exclude; /** * Type guard to filter out null-ish values * * @category Guards * @example array.filter(notUndefined) */ declare function notUndefined(v: T): v is Exclude; /** * Type guard to filter out falsy values * * @category Guards * @example array.filter(isTruthy) */ declare function isTruthy(v: T): v is NonNullable; declare const isDef: (val?: T | undefined) => val is T; declare const isBoolean: (val: any) => val is boolean; declare const isFunction: (val: any) => val is T; declare const isNumber: (val: any) => val is number; declare const isString: (val: unknown) => val is string; declare const isObject: (val: any) => val is object; declare const isWindow: (val: any) => boolean; declare const isBrowser: boolean; declare function clamp(n: number, min: number, max: number): number; declare function sum(...args: number[] | number[][]): number; /** * Replace backslash to slash * * @category String */ declare function slash(str: string): string; /** * Ensure prefix of a string * * @category String */ declare function ensurePrefix(prefix: string, str: string): string; /** * Dead simple template engine, just like Python's `.format()` * * @example * ``` * const result = template( * 'Hello {0}! My name is {1}.', * 'Inès', * 'Anthony' * ) // Hello Inès! My name is Anthony. * ``` */ declare function template(str: string, ...args: any[]): string; declare const timestamp: () => number; /** * Call every function in an array */ declare function batchInvoke(functions: Nullable[]): void; /** * Call the function */ declare function invoke(fn: Fn): void; /** * Pass the value through the callback, and return the value * * @example * ``` * function createUser(name: string): User { * return tap(new User, user => { * user.name = name * }) * } * ``` */ declare function tap(value: T, callback: (value: T) => void): T; /** * Map key/value pairs for an object, and construct a new one * * * @category Object * * Transform: * @example * ``` * objectMap({ a: 1, b: 2 }, (k, v) => [k.toString().toUpperCase(), v.toString()]) * // { A: '1', B: '2' } * ``` * * Swap key/value: * @example * ``` * objectMap({ a: 1, b: 2 }, (k, v) => [v, k]) * // { 1: 'a', 2: 'b' } * ``` * * Filter keys: * @example * ``` * objectMap({ a: 1, b: 2 }, (k, v) => k === 'a' ? undefined : [k, v]) * // { b: 2 } * ``` */ declare function objectMap(obj: Record, fn: (key: K, value: V) => [NK, NV] | undefined): Record; /** * Type guard for any key, `k`. * Marks `k` as a key of `T` if `k` is in `obj`. * * @category Object * @param obj object to query for key `k` * @param k key to check existence in `obj` */ declare function isKeyOf(obj: T, k: keyof any): k is keyof T; /** * Strict typed `Object.keys` * * @category Object */ declare function objectKeys(obj: T): (keyof T)[]; /** * Strict typed `Object.entries` * * @category Object */ declare function objectEntries(obj: T): [keyof T, T[keyof T]][]; /** * Deep merge :P * * @category Object */ declare function deepMerge(target: T, ...sources: S[]): DeepMerge; /** * Create a new subset object by giving keys * * @category Object */ declare function objectPick(obj: O, keys: T[], omitUndefined?: boolean): Pick; /** * Clear undefined fields from an object. It mutates the object * * @category Object */ declare function clearUndefined(obj: T): T; /** * Determines whether an object has a property with the specified name * * @see https://eslint.org/docs/rules/no-prototype-builtins * @category Object */ declare function hasOwnProperty(obj: T, v: PropertyKey): boolean; interface SingletonPromiseReturn { (): Promise; /** * Reset current staled promise. * Await it to have proper shutdown. */ reset: () => Promise; } /** * Create singleton promise function * * @example * ``` * const promise = createSingletonPromise(async () => { ... }) * * await promise() * await promise() // all of them will be bind to a single promise instance * await promise() // and be resolved together * ``` */ declare function createSingletonPromise(fn: () => Promise): SingletonPromiseReturn; /** * Promised `setTimeout` */ declare function sleep(ms: number, callback?: Fn): Promise; /** * Create a promise lock * * @example * ``` * const lock = createPromiseLock() * * lock.run(async () => { * await doSomething() * }) * * // in anther context: * await lock.wait() // it will wait all tasking finished * ``` */ declare function createPromiseLock(): { run(fn: () => Promise): Promise; wait(): Promise; isWaiting(): boolean; clear(): void; }; export { ArgumentsType, Arrayable, Awaitable, Constructor, DeepMerge, ElementOf, Fn, MergeInsertions, Nullable, PartitionFilter, SingletonPromiseReturn, UnionToIntersection, assert, at, batchInvoke, clamp, clampArrayRange, clearUndefined, createPromiseLock, createSingletonPromise, deepMerge, ensurePrefix, flattenArrayable, hasOwnProperty, invoke, isBoolean, isBrowser, isDef, isFunction, isKeyOf, isNumber, isObject, isString, isTruthy, isWindow, last, mergeArrayable, move, noNull, noop, notNullish, notUndefined, objectEntries, objectKeys, objectMap, objectPick, partition, range, remove, slash, sleep, sum, tap, template, timestamp, toArray, toString, uniq };