mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-09-14 11:39:05 +00:00
11 lines
220 B
TypeScript
11 lines
220 B
TypeScript
|
|
import { Observable } from '../../Observable';
|
|
import { find } from '../../operator/find';
|
|
|
|
Observable.prototype.find = find;
|
|
|
|
declare module '../../Observable' {
|
|
interface Observable<T> {
|
|
find: typeof find;
|
|
}
|
|
} |