7 lines
153 B
TypeScript
7 lines
153 B
TypeScript
import { find } from '../../operator/find';
|
|
declare module 'rxjs/internal/Observable' {
|
|
interface Observable<T> {
|
|
find: typeof find;
|
|
}
|
|
}
|