@1771technologies/lytenyte-pro
Version:
Blazingly fast headless React data grid with 100s of features.
8 lines (7 loc) • 312 B
TypeScript
import type { Annotation } from "../../types.js";
export interface AnnotationArrowOptions {
readonly direction?: "up" | "down" | "left" | "right";
readonly color?: string;
readonly size?: number;
}
export declare function annotationArrow(options?: AnnotationArrowOptions): Annotation<any>["render"];