ix
Version:
The Interactive Extensions for JavaScript
11 lines (10 loc) • 324 B
TypeScript
import { AsyncIterableX } from '../../asynciterable/asynciterablex';
/**
* @ignore
*/
export declare function throttleProto<T>(this: AsyncIterableX<T>, time: number): AsyncIterableX<T>;
declare module '../../asynciterable/asynciterablex' {
interface AsyncIterableX<T> {
throttle: typeof throttleProto;
}
}