gazeplotter
Version:
Gazeplotter is a Svelte application for visualizing eye-tracking data.
20 lines (19 loc) • 812 B
TypeScript
import { SvelteComponent } from "svelte";
import type { ParticipantsGroup } from '../../../type/Data/ParticipantsGroup.ts';
declare const __propDef: {
props: {
group: ParticipantsGroup;
};
events: {
click: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ModalContentParticipantsGroupsChecklistProps = typeof __propDef.props;
export type ModalContentParticipantsGroupsChecklistEvents = typeof __propDef.events;
export type ModalContentParticipantsGroupsChecklistSlots = typeof __propDef.slots;
export default class ModalContentParticipantsGroupsChecklist extends SvelteComponent<ModalContentParticipantsGroupsChecklistProps, ModalContentParticipantsGroupsChecklistEvents, ModalContentParticipantsGroupsChecklistSlots> {
}
export {};