interface IWorkerSPCValue {
    notApplicable?: boolean;
    traceability?: Record<number, OptionalTraceValue>;
    value?: number;
}

Hierarchy (view full)

Properties

notApplicable?: boolean

Whether this value applies or not. When marked not applicable, no value or traceability will be stored.

traceability?: Record<number, OptionalTraceValue>

The traceability for the specific value. The key corresponds to the traceability id, and the value corresponds to the traceability value. Preset values will automatically be matched.

value?: number

The value of the individual input.