mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-16 23:33:38 -05:00
chore(package): re-init package with commitizen and standard-release
This commit is contained in:
15
node_modules/rxjs/operators/multicast.d.ts
generated
vendored
Normal file
15
node_modules/rxjs/operators/multicast.d.ts
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Subject } from '../Subject';
|
||||
import { Operator } from '../Operator';
|
||||
import { Subscriber } from '../Subscriber';
|
||||
import { Observable } from '../Observable';
|
||||
import { ConnectableObservable } from '../observable/ConnectableObservable';
|
||||
import { FactoryOrValue, MonoTypeOperatorFunction, OperatorFunction, UnaryFunction } from '../interfaces';
|
||||
export declare function multicast<T>(subjectOrSubjectFactory: FactoryOrValue<Subject<T>>): UnaryFunction<Observable<T>, ConnectableObservable<T>>;
|
||||
export declare function multicast<T>(SubjectFactory: (this: Observable<T>) => Subject<T>, selector?: MonoTypeOperatorFunction<T>): MonoTypeOperatorFunction<T>;
|
||||
export declare function multicast<T, R>(SubjectFactory: (this: Observable<T>) => Subject<T>, selector?: OperatorFunction<T, R>): OperatorFunction<T, R>;
|
||||
export declare class MulticastOperator<T, R> implements Operator<T, R> {
|
||||
private subjectFactory;
|
||||
private selector;
|
||||
constructor(subjectFactory: () => Subject<T>, selector: (source: Observable<T>) => Observable<R>);
|
||||
call(subscriber: Subscriber<R>, source: any): any;
|
||||
}
|
||||
Reference in New Issue
Block a user