frontend/.pnpm-store/v3/files/14/5967db25e848eed322724d94a33096db98d6b9563a44f3911d104e65d1917bb736233c4763e0300df0520e5b9010e181a50700f10da78267e7a86943dac6f4

9 lines
941 B
Plaintext

import { Observable } from '../Observable';
import { Falsy, OperatorFunction } from '../types';
export declare function every<T>(predicate: BooleanConstructor): OperatorFunction<T, Exclude<T, Falsy> extends never ? false : boolean>;
/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */
export declare function every<T>(predicate: BooleanConstructor, thisArg: any): OperatorFunction<T, Exclude<T, Falsy> extends never ? false : boolean>;
/** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */
export declare function every<T, A>(predicate: (this: A, value: T, index: number, source: Observable<T>) => boolean, thisArg: A): OperatorFunction<T, boolean>;
export declare function every<T>(predicate: (value: T, index: number, source: Observable<T>) => boolean): OperatorFunction<T, boolean>;
//# sourceMappingURL=every.d.ts.map