/** * @file Container.Meta.Types.ts * @author Gage Sorrell * @copyright (c) 2026 Gage Sorrell * @license MIT */ import type { HigherIterable } from "./Container.Types.mjs"; /** * A {@link Higher | higher-kinded} container type of a given {@link ElementType}, * which also implements the {@link Iterable} interface. * * @template ElementType - The type of the elements in this type. */ export type IterableContainer = HigherIterable | Iterable; //# sourceMappingURL=Container.Meta.Types.d.mts.map