export interface ScarfSettingsType {
    scarfPlotId: number;
    stimulusId: number;
    groupId: number;
    zoomLevel: number;
    timeline: 'absolute' | 'relative' | 'ordinal';
    /**
     * The width of the scarf chart axis in set units.
     * 0 = width is automatically calculated.
     */
    absoluteGeneralLastVal: number;
    /**
     * The width of the scarf chart axis in set units for each stimulus.
     * 0 = width is automatically calculated.
     * The index of the array corresponds to the stimulus id.
     * If the stimulus id is not in the array, the general width is used.
     */
    absoluteStimuliLastVal: number[];
    ordinalGeneralLastVal: number;
    ordinalStimuliLastVal: number[];
}
