@reactivex/rxjs
Version:
Reactive Extensions for modern JavaScript
16 lines (12 loc) • 543 B
text/typescript
import { of, timer } from 'rxjs';
import { debounce } from 'rxjs/operators';
it('should infer correctly', () => {
const o = of(1, 2, 3).pipe(debounce(() => timer(47))); // $ExpectType Observable<number>
});
it('should infer correctly with a Promise', () => {
const o = of(1, 2, 3).pipe(debounce(() => new Promise<boolean>(() => {}))); // $ExpectType Observable<number>
});
it('should enforce types', () => {
const o = of(1, 2, 3).pipe(debounce()); // $ExpectError
const p = of(1, 2, 3).pipe(debounce(() => {})); // $ExpectError
});