DefinitelyTyped/types/stream-throttle/stream-throttle-tests.ts
2018-08-28 18:17:11 -07:00

8 lines
214 B
TypeScript

import { Throttle, ThrottleGroup } from 'stream-throttle';
const throttle = new Throttle({rate: 1});
const throttleGroup = new ThrottleGroup({rate: 1});
// $ExpectType Throttle
throttleGroup.throttle({rate: 1});