Interface Spectrum<DataType>

interface Spectrum {
    dataType?: string;
    id?: string;
    meta?: Record<string, any>;
    setup?: Record<string, any>;
    title?: string;
    variables: SpectrumVariables<DataType>;
}

Type Parameters

  • DataType extends DoubleArray = DoubleArray

Properties

dataType?: string
id?: string
meta?: Record<string, any>
setup?: Record<string, any>
title?: string
variables: SpectrumVariables<DataType>