gazeplotter
Version:
Gazeplotter is a Svelte application for visualizing eye-tracking data.
18 lines (17 loc) • 557 B
TypeScript
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
value?: string | undefined;
label: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type GeneralInputTextProps = typeof __propDef.props;
export type GeneralInputTextEvents = typeof __propDef.events;
export type GeneralInputTextSlots = typeof __propDef.slots;
export default class GeneralInputText extends SvelteComponent<GeneralInputTextProps, GeneralInputTextEvents, GeneralInputTextSlots> {
}
export {};