UNPKG

gazeplotter

Version:

Gazeplotter is a Svelte application for visualizing eye-tracking data.

10 lines (9 loc) 255 B
/** * 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; }