import debounce from './debounce.js'; import throttle from './throttle.js'; import type { DebounceOptions, Debounced, ThrottleOptions, Throttled } from './types.js'; export { debounce, throttle }; export type { DebounceOptions, Debounced, ThrottleOptions, Throttled };