This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
StasisWarden-Legacy/node_modules/es-toolkit/dist/function/index.d.ts
T

22 lines
868 B
TypeScript

export { after } from './after.js';
export { ary } from './ary.js';
export { asyncNoop } from './asyncNoop.js';
export { before } from './before.js';
export { curry } from './curry.js';
export { curryRight } from './curryRight.js';
export { DebouncedFunction, debounce } from './debounce.js';
export { flow } from './flow.js';
export { flowRight } from './flowRight.js';
export { identity } from './identity.js';
export { MemoizeCache, memoize } from './memoize.js';
export { negate } from './negate.js';
export { noop } from './noop.js';
export { once } from './once.js';
export { partial } from './partial.js';
export { partialRight } from './partialRight.js';
export { rest } from './rest.js';
export { retry } from './retry.js';
export { spread } from './spread.js';
export { ThrottledFunction, throttle } from './throttle.js';
export { unary } from './unary.js';