gazeplotter
Version:
Gazeplotter is a Svelte application for visualizing eye-tracking data.
20 lines (19 loc) • 600 B
TypeScript
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
label: string;
checked?: boolean | undefined;
};
events: {
change: Event;
} & {
[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 {};