import type { ReadOnly } from "@vangware/types"; /** * Read-only `Iterable`. * * @category Generators * @remarks * This is just an read-only alternative to `Iterable` to avoid unwanted * mutations. * * @template Item Type of the items in the `Iterable`. */ export type ReadOnlyIterable = ReadOnly>;