UNPKG

@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) 343 B
import type { StandardSchemaV1 } from "@standard-schema/spec"; export declare class ValidateIterable<TInput, TOutput> implements Iterable<TOutput> { private readonly iterable; private readonly schema; constructor(iterable: Iterable<TInput>, schema: StandardSchemaV1<TInput, TOutput>); [Symbol.iterator](): Iterator<TOutput>; }