UNPKG

@reactodia/workspace

Version:

Reactodia Workspace -- library for visual interaction with graphs in a form of a diagram.

23 lines 761 B
import { DockDirection } from './utility/viewportDock'; export interface NavigatorProps { dock: DockDirection; dockOffsetX?: number; dockOffsetY?: number; expanded?: boolean | 'auto'; autoCollapseFraction?: number; width?: number; height?: number; scalePadding?: number; backgroundFill?: string; scrollablePaneFill?: string; viewportFill?: string; viewportStroke?: NavigatorStrokeStyle; overflowStroke?: NavigatorStrokeStyle; } export interface NavigatorStrokeStyle { readonly color?: string; readonly width?: number; readonly dash?: ReadonlyArray<number>; } export declare function Navigator(props: NavigatorProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=navigator.d.ts.map