Type Alias NamesOf<V>

    NamesOf: V extends readonly (infer U)[]
        ? U extends PartMarker<infer N> ? N : never
        : never

    Union of PartMarker names in an interpolation tuple (strings drop out).

    Type Parameters