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