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