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