gazeplotter
Version:
Gazeplotter is a Svelte application for visualizing eye-tracking data.
21 lines (20 loc) • 765 B
TypeScript
import { SvelteComponent } from "svelte";
import type { SingleStylingScarfFillingType } from '../../../../type/Filling/ScarfFilling/index.ts';
declare const __propDef: {
props: {
legend: SingleStylingScarfFillingType;
isVisibility?: boolean | undefined;
};
events: {
legendIdentifier: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ScarfPlotLegendItemProps = typeof __propDef.props;
export type ScarfPlotLegendItemEvents = typeof __propDef.events;
export type ScarfPlotLegendItemSlots = typeof __propDef.slots;
export default class ScarfPlotLegendItem extends SvelteComponent<ScarfPlotLegendItemProps, ScarfPlotLegendItemEvents, ScarfPlotLegendItemSlots> {
}
export {};