UNPKG

@taiga-ui/cdk

Version:

Base library for creating Angular components and applications using Taiga UI principles regarding of actual visual appearance

10 lines (9 loc) 448 B
/** * Returns array of Elements covering edges of given element or null if at least one edge middle point is visible * * CAUTION: Empty array means element if offscreen i.e. covered by no elements, rather than not covered * ```ts * function tuiGetElementObscures(element: Element): readonly [Element, Element, Element, Element] | [] | null * ``` */ export declare function tuiGetElementObscures(element: Element): readonly Element[] | null;