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