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