@uuv/assistant
Version:
UUV Helper used to improve the life of testers and developers by generating cucumber phrases from the GUI.
13 lines (12 loc) • 624 B
TypeScript
import { AdditionalLayerEnum } from "../Commons";
export interface Point {
x: number;
y: number;
}
export declare const ORDER_PROPS: {
radius: number;
linkWith: number;
};
export declare function buildLayer(layerShadowRoot: ShadowRoot, layer: AdditionalLayerEnum, elements: HTMLElement[], additionalStyle: string, isFullWith: boolean, displayLinkBetweenElements: boolean, displayNavigationOrder?: boolean): void;
export declare function addLayerToShadowDom(dom: ShadowRoot, layer: AdditionalLayerEnum): void;
export declare function removeLayerToShadowDom(dom: ShadowRoot, layer: AdditionalLayerEnum): void;