//#region src/ops/limiter.d.ts /** * Limiter is anything that can wait. It is typically used to implement * client-side rate limiting. Implementations of this interface must be * safe to call concurrently. */ interface Limiter { wait(signal?: AbortSignal): Promise; } //#endregion export { Limiter }; //# sourceMappingURL=limiter.d.ts.map