UNPKG

gazeplotter

Version:

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

18 lines (17 loc) 663 B
import { SvelteComponent } from "svelte"; import type { ParticipantsGroup } from '../../../type/Data/ParticipantsGroup.ts'; declare const __propDef: { props: { group: ParticipantsGroup; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type ParticipantsGroupSelectProps = typeof __propDef.props; export type ParticipantsGroupSelectEvents = typeof __propDef.events; export type ParticipantsGroupSelectSlots = typeof __propDef.slots; export default class ParticipantsGroupSelect extends SvelteComponent<ParticipantsGroupSelectProps, ParticipantsGroupSelectEvents, ParticipantsGroupSelectSlots> { } export {};