interface ParsedResistanceEntry {
    amount: number;
    custom?: boolean;
    isDR: boolean;
    isER: boolean;
    label: string;
    operator?: boolean;
    type0: { data?: object; id: string; name: string };
    type1?: { data?: object; id: string; name: string };
}

Properties

amount: number
custom?: boolean
isDR: boolean
isER: boolean
label: string
operator?: boolean
type0: { data?: object; id: string; name: string }
type1?: { data?: object; id: string; name: string }