@daiso-tech/core
Version:
The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.
14 lines (13 loc) • 419 B
TypeScript
/**
* @module Collection
*/
import { type StandardSchemaV1 } from "@standard-schema/spec";
/**
* @internal
*/
export declare class AsyncValidateIterable<TInput, TOutput> implements AsyncIterable<TOutput> {
private readonly iterable;
private readonly schema;
constructor(iterable: AsyncIterable<TInput>, schema: StandardSchemaV1<TInput, TOutput>);
[Symbol.asyncIterator](): AsyncIterator<TOutput>;
}