frontend/.pnpm-store/v3/files/fa/623f21e3ec8189b57126d14c7273ee57325e74f6168fc717240e52ba3dd612e58536673d066b621f50ed692b862ee06d50c3832c3b15c2ce9f9926f54f4dc6

5 lines
408 B
Plaintext

import { Observable } from '../Observable';
import { MonoTypeOperatorFunction, OperatorFunction, TruthyTypesOf } from '../types';
export declare function single<T>(predicate: BooleanConstructor): OperatorFunction<T, TruthyTypesOf<T>>;
export declare function single<T>(predicate?: (value: T, index: number, source: Observable<T>) => boolean): MonoTypeOperatorFunction<T>;
//# sourceMappingURL=single.d.ts.map