gazeplotter
Version:
Gazeplotter is a Svelte application for visualizing eye-tracking data.
24 lines (23 loc) • 737 B
TypeScript
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
value?: string[] | undefined;
suggestions?: string[] | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type TagsInputProps = typeof __propDef.props;
export type TagsInputEvents = typeof __propDef.events;
export type TagsInputSlots = typeof __propDef.slots;
export default class TagsInput extends SvelteComponent<TagsInputProps, TagsInputEvents, TagsInputSlots> {
get value(): string[] | undefined;
/**accessor*/
set value(_: string[] | undefined);
get suggestions(): string[] | undefined;
/**accessor*/
set suggestions(_: string[] | undefined);
}
export {};