Files
v10/dist/function.d.ts

6 lines
356 B
TypeScript

import { composeCallbacks } from "./function/compose-callbacks.js";
import { identity } from "./function/identity.js";
import { noop } from "./function/noop.js";
import { Throttled, throttle } from "./function/throttle.js";
import { tryCatch } from "./function/try-catch.js";
export { type Throttled, composeCallbacks, identity, noop, throttle, tryCatch };