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