6 lines
269 B
TypeScript
6 lines
269 B
TypeScript
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 };
|