/**
 * Object representing a single stimulus in the scarf plot selection box of stimuli.
 * @param id - ID of the stimulus
 * @param name - displayed name of the stimulus
 */
export interface StimulusScarfFillingType {
    id: number;
    name: string;
}
