@gravity-ui/graph
Version:
Modern graph editor component
10 lines (9 loc) • 547 B
TypeScript
import type { TDevToolsLayerProps, TDevToolsLayerState } from "./types";
/** Default properties for the DevToolsLayer */
export declare const DEFAULT_DEVTOOLS_LAYER_PROPS: Omit<TDevToolsLayerProps, "graph" | "camera" | "root" | "emitter">;
/** Initial state for the DevToolsLayer */
export declare const INITIAL_DEVTOOLS_LAYER_STATE: TDevToolsLayerState;
/** Factor for minor tick length relative to major tick length */
export declare const MINOR_TICK_LENGTH_FACTOR = 0.6;
/** Length of major ticks */
export declare const MAJOR_TICK_LENGTH = 8;