Skip to content

CandidKeyValue

CandidKeyValue<T> = T extends infer U ? [CandidVariantKey<U> & string, CandidVariantValue<U, CandidVariantKey<U> & string>] : never

Defined in: types/variant.ts:34

A type that represents the extracted key and value from a variant Designed to be used with the extractVariant function

T