7 lines
157 B
TypeScript
Raw Normal View History

2019-11-26 14:50:43 -08:00
import { toArray } from '../../operator/toArray';
declare module '../../Observable' {
interface Observable<T> {
toArray: typeof toArray;
}
}