UNPKG

gazeplotter

Version:

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

20 lines (19 loc) 508 B
import { SvelteComponent } from "svelte"; declare const __propDef: { props: { title: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: { header: {}; body: {}; }; }; export type PlotWrapProps = typeof __propDef.props; export type PlotWrapEvents = typeof __propDef.events; export type PlotWrapSlots = typeof __propDef.slots; export default class PlotWrap extends SvelteComponent<PlotWrapProps, PlotWrapEvents, PlotWrapSlots> { } export {};