5967db25e848eed322724d94a33096db98d6b9563a44f3911d104e65d1917bb736233c4763e0300df0520e5b9010e181a50700f10da78267e7a86943dac6f4 941 B

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