Interface StarVal<V>

    A parsed star: its elements plus the literal separators between them (seps.length === items.length - 1), kept so print round-trips.

    interface StarVal<V = RegVal> {
        items: readonly V[];
        seps: readonly string[];
    }

    Type Parameters

    Index

    Properties

    Properties

    items: readonly V[]
    seps: readonly string[]