diff --git a/src/runtime/sleep.ts b/src/runtime/sleep.ts index 88414ab..0b3c52a 100644 --- a/src/runtime/sleep.ts +++ b/src/runtime/sleep.ts @@ -66,3 +66,8 @@ export function sleep(time_ms: number) { export function sleep_until(u: Date) { return new SleeperPromise(u.getTime()); } + +export { + debounce, + throttle +} from "@matchlighter/common_library/limit"