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