UNPKG

gazeplotter

Version:

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

24 lines (23 loc) 701 B
import { SvelteComponent } from "svelte"; declare const __propDef: { props: { options: { value: string; label: string; }[]; disabled?: boolean | undefined; label: string; value?: string | undefined; compact?: boolean | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type GeneralSelectProps = typeof __propDef.props; export type GeneralSelectEvents = typeof __propDef.events; export type GeneralSelectSlots = typeof __propDef.slots; export default class GeneralSelect extends SvelteComponent<GeneralSelectProps, GeneralSelectEvents, GeneralSelectSlots> { } export {};