gazeplotter
Version:
Gazeplotter is a Svelte application for visualizing eye-tracking data.
20 lines (19 loc) • 682 B
TypeScript
import { SvelteComponent } from "svelte";
import type { StylingScarfFillingType } from '../../../../type/Filling/ScarfFilling/index.ts';
declare const __propDef: {
props: {
filling: StylingScarfFillingType;
};
events: {
legendIdentifier: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ScarfPlotLegendProps = typeof __propDef.props;
export type ScarfPlotLegendEvents = typeof __propDef.events;
export type ScarfPlotLegendSlots = typeof __propDef.slots;
export default class ScarfPlotLegend extends SvelteComponent<ScarfPlotLegendProps, ScarfPlotLegendEvents, ScarfPlotLegendSlots> {
}
export {};