gazeplotter
Version:
Gazeplotter is a Svelte application for visualizing eye-tracking data.
27 lines (26 loc) • 727 B
TypeScript
import { SvelteComponent } from "svelte";
export declare const meta: {
title: string;
component: typeof GeneralSelect;
tags: string[];
args: {
options: {
value: string;
label: string;
}[];
label: string;
};
};
declare const __propDef: {
props: Record<string, never>;
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 {};