/** * @file Container.Unsafe.Types.ts * @author Gage Sorrell * @copyright (c) 2026 Gage Sorrell * @license MIT */ import type { Any as AnySafe } from "./Container.Types.cjs"; import type { IterableContainer } from "./Container.Meta.Types.cjs"; export declare namespace Unsafe { /** Any {@link AnySafe | container} of *any* element type. */ type Any = AnySafe; /** Any {@link IterableContainer | iterable container} of *any* element type. */ type Iterable = IterableContainer; } //# sourceMappingURL=Container.Unsafe.Types.d.cts.map