linwenling
2023-08-09 c7d2fb7b04ea184df7c03a615ccda9bd172bb527
1
2
3
import { OperatorFunction, MonoTypeOperatorFunction } from '../types';
export declare function filter<T, S extends T>(predicate: (value: T, index: number) => value is S, thisArg?: any): OperatorFunction<T, S>;
export declare function filter<T>(predicate: (value: T, index: number) => boolean, thisArg?: any): MonoTypeOperatorFunction<T>;