mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-12 13:41:40 +00:00
7 lines
165 B
TypeScript
7 lines
165 B
TypeScript
![]() |
import { startWith } from '../../operator/startWith';
|
||
|
declare module '../../Observable' {
|
||
|
interface Observable<T> {
|
||
|
startWith: typeof startWith;
|
||
|
}
|
||
|
}
|