UNPKG

gazeplotter

Version:

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

15 lines (14 loc) 610 B
import { SvelteComponent } from "svelte"; declare const __propDef: { props: Record<string, never>; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type ModalContentParticipantsGroupsProps = typeof __propDef.props; export type ModalContentParticipantsGroupsEvents = typeof __propDef.events; export type ModalContentParticipantsGroupsSlots = typeof __propDef.slots; export default class ModalContentParticipantsGroups extends SvelteComponent<ModalContentParticipantsGroupsProps, ModalContentParticipantsGroupsEvents, ModalContentParticipantsGroupsSlots> { } export {};