UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

7 lines • 302 B
export declare class FilterIterator<T, V extends T = T> implements Iterator<T> { private source; private predicate; constructor(source: Iterator<T>, predicate: ((element: T) => element is V) | ((element: T) => boolean)); next(): IteratorResult<V>; } //# sourceMappingURL=filter.d.ts.map