gazeplotter
Version:
Gazeplotter is a Svelte application for visualizing eye-tracking data.
23 lines (22 loc) • 673 B
TypeScript
import { SvelteComponent } from "svelte";
export declare const meta: {
title: string;
component: typeof GeneralInputCheck;
tags: string[];
args: {
label: string;
};
};
declare const __propDef: {
props: Record<string, never>;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type GeneralInputCheckProps = typeof __propDef.props;
export type GeneralInputCheckEvents = typeof __propDef.events;
export type GeneralInputCheckSlots = typeof __propDef.slots;
export default class GeneralInputCheck extends SvelteComponent<GeneralInputCheckProps, GeneralInputCheckEvents, GeneralInputCheckSlots> {
}
export {};