UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

12 lines (11 loc) 518 B
export declare const UPDATE_POSITION_ANIMATION_DURATION = 300; export declare type PopoverProcess = { zIndex: number; }; export declare type PopoverCalcProcess = PopoverProcess & { calcFunc: () => void; }; export declare function calcPopoverPositions(): Promise<void>; export declare function isExistPopoverCalcProcess(zIndex: number): PopoverCalcProcess; export declare function addPopoverCalcProcess(process: PopoverCalcProcess): void; export declare function removePopoverCalcProcess(zIndex: number): void;