Nude Element API Docs - v0.1.3
    Preparing search index...

    Variable IterableConst

    Iterable: PropType<PropTypeSpec> = ...

    Abstract type for any iterable. The parsing pipeline is two streaming generators feeding a terminal step: parseItems yields raw items (no type parsing); parsedItems yields each item through this.values; parse materializes into an Array. Concrete types (Array, Set, …) extends: Iterable — Array inherits parse unchanged; Set overrides parse to wrap this.parsedItems(value) into a Set. Each input value flows through the chain exactly once.

    MapType extends this and reuses parseItems to grab the raw string parts, then splits each on : in its own parseEntries to yield [key, value] tuples.