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.

14 lines (13 loc) 394 B
/** * @module Collection */ import { type StandardSchemaV1 } from "@standard-schema/spec"; /** * @internal */ 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>; }