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