import type {IntoInterator} from './types'; type PredicateFunction = (item: T) => boolean; export default function filter( target: IntoInterator, predicate: PredicateFunction ): IterableIterator;