UNPKG

gazeplotter

Version:

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

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