7 lines
141 B
TypeScript
7 lines
141 B
TypeScript
|
import { min } from '../../operator/min';
|
||
|
declare module '../../Observable' {
|
||
|
interface Observable<T> {
|
||
|
min: typeof min;
|
||
|
}
|
||
|
}
|