芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/.config/yarn/global/node_modules/rxjs/internal/observable/ConnectableObservable.d.ts
import { Subject } from '../Subject'; import { Observable } from '../Observable'; import { Subscriber } from '../Subscriber'; import { Subscription } from '../Subscription'; /** * @class ConnectableObservable
*/ export declare class ConnectableObservable
extends Observable
{ source: Observable
; protected subjectFactory: () => Subject
; protected _subject: Subject
; protected _refCount: number; protected _connection: Subscription; /** @internal */ _isComplete: boolean; constructor(source: Observable
, subjectFactory: () => Subject
); /** @deprecated This is an internal implementation detail, do not use. */ _subscribe(subscriber: Subscriber
): Subscription; protected getSubject(): Subject
; connect(): Subscription; refCount(): Observable
; } export declare const connectableObservableDescriptor: PropertyDescriptorMap;