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