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