gazeplotter
Version:
Gazeplotter is a Svelte application for visualizing eye-tracking data.
17 lines (16 loc) • 586 B
TypeScript
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
scarfId: number;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ModalContentScarfPlotClipProps = typeof __propDef.props;
export type ModalContentScarfPlotClipEvents = typeof __propDef.events;
export type ModalContentScarfPlotClipSlots = typeof __propDef.slots;
export default class ModalContentScarfPlotClip extends SvelteComponent<ModalContentScarfPlotClipProps, ModalContentScarfPlotClipEvents, ModalContentScarfPlotClipSlots> {
}
export {};