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