Files

7 lines
165 B
TypeScript

import { toArray } from '../../operator/toArray';
declare module 'rxjs/internal/Observable' {
interface Observable<T> {
toArray: typeof toArray;
}
}