interface VariantOptionsT<T, DT> {
    arrayType?: string | VariantArrayType;
    dataType: DT;
    dimensions?: null | number[];
    value: T;
}

Type Parameters

Hierarchy (view full)

Properties

arrayType?: string | VariantArrayType
dataType: DT
dimensions?: null | number[]
value: T