@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.
16 lines (15 loc) • 595 B
TypeScript
/**
* @module Collection
*/
import { type ICollection } from "../../../../collection/contracts/_module-exports.js";
/**
* @internal
*/
export declare class PadStartIterable<TInput, TExtended> implements Iterable<TInput | TExtended> {
private collection;
private maxLength;
private fillItems;
private makeCollection;
constructor(collection: ICollection<TInput>, maxLength: number, fillItems: Iterable<TExtended>, makeCollection: <TInput>(iterable: Iterable<TInput | TExtended>) => ICollection<TInput | TExtended>);
[Symbol.iterator](): Iterator<TInput | TExtended>;
}