gazeplotter
Version:
Gazeplotter is a Svelte application for visualizing eye-tracking data.
22 lines (21 loc) • 799 B
TypeScript
import { SvelteComponent } from "svelte";
import type { SingleStylingScarfFillingType } from '../../../../type/Filling/ScarfFilling/index.js';
declare const __propDef: {
props: {
fillings: SingleStylingScarfFillingType[];
title: string;
isVisibility?: boolean | undefined;
};
events: {
legendIdentifier: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ScarfPlotLegendGroupProps = typeof __propDef.props;
export type ScarfPlotLegendGroupEvents = typeof __propDef.events;
export type ScarfPlotLegendGroupSlots = typeof __propDef.slots;
export default class ScarfPlotLegendGroup extends SvelteComponent<ScarfPlotLegendGroupProps, ScarfPlotLegendGroupEvents, ScarfPlotLegendGroupSlots> {
}
export {};