Type Alias IndexedEnumMember<V>

IndexedEnumMember<V>: {
    index: number;
    value?: V | null;
}

Type Parameters