@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.
8 lines (7 loc) • 368 B
TypeScript
import type { StandardSchemaV1 } from "@standard-schema/spec";
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>;
}