UNPKG

gazeplotter

Version:

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

23 lines (22 loc) 635 B
import { SvelteComponent } from "svelte"; export declare const meta: { title: string; component: typeof GeneralEmpty; tags: string[]; args: { message: string; }; }; declare const __propDef: { props: Record<string, never>; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type GeneralEmptyProps = typeof __propDef.props; export type GeneralEmptyEvents = typeof __propDef.events; export type GeneralEmptySlots = typeof __propDef.slots; export default class GeneralEmpty extends SvelteComponent<GeneralEmptyProps, GeneralEmptyEvents, GeneralEmptySlots> { } export {};