Index: node_modules/es-toolkit/dist/function/index.d.ts
===================================================================
--- node_modules/es-toolkit/dist/function/index.d.ts	(revision a762898ecd37a452c782821d4c2c4955c6ed2521)
+++ node_modules/es-toolkit/dist/function/index.d.ts	(revision a762898ecd37a452c782821d4c2c4955c6ed2521)
@@ -0,0 +1,21 @@
+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 { DebounceOptions, 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 { ThrottleOptions, ThrottledFunction, throttle } from './throttle.js';
+export { unary } from './unary.js';
