gazeplotter
Version:
Gazeplotter is a Svelte application for visualizing eye-tracking data.
28 lines (27 loc) • 1.09 kB
TypeScript
import { SvelteComponent } from "svelte";
import type { ScarfFillingType } from '../../../../type/Filling/ScarfFilling/ScarfFillingType.ts';
import type { ScarfSettingsType } from '../../../../type/Settings/ScarfSettings/ScarfSettingsType.ts';
import { PlotAxisBreaks } from '../../../../class/Plot/PlotAxisBreaks/PlotAxisBreaks.ts';
declare const __propDef: {
props: {
scarfPlotId: number;
tooltipAreaElement: HTMLElement;
data: ScarfFillingType;
settings: ScarfSettingsType;
axisBreaks: PlotAxisBreaks;
highlightedIdentifier?: string | null | undefined;
};
events: {
mousemove: MouseEvent;
mouseleave: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ScarfPlotFigureProps = typeof __propDef.props;
export type ScarfPlotFigureEvents = typeof __propDef.events;
export type ScarfPlotFigureSlots = typeof __propDef.slots;
export default class ScarfPlotFigure extends SvelteComponent<ScarfPlotFigureProps, ScarfPlotFigureEvents, ScarfPlotFigureSlots> {
}
export {};