@visactor/vgrammar-core
Version:
VGrammar is a visual grammar library
21 lines (20 loc) • 854 B
TypeScript
import type { ElementHighlightOptions, IMark, IView, InteractionEvent } from '../types';
import { BaseInteraction } from './base';
export declare class ElementHighlightByKey extends BaseInteraction<ElementHighlightOptions> {
static type: string;
type: string;
static defaultOptions: ElementHighlightOptions;
options: ElementHighlightOptions;
protected _marks?: IMark[];
constructor(view: IView, options?: ElementHighlightOptions);
getStartState(): string;
protected getEvents(): {
type: "none" | import("../types").EventType;
handler: (e: InteractionEvent) => void;
}[];
resetAll(): void;
start(element: InteractionEvent['element']): void;
reset(element?: InteractionEvent['element']): void;
handleStart: (e: InteractionEvent) => void;
handleReset: (e: InteractionEvent) => void;
}