@wordpress/dom
Version:
DOM utilities module for WordPress.
10 lines • 424 B
TypeScript
/**
* Check whether the selection is vertically at the edge of the container.
*
* @param {HTMLElement} container Focusable element.
* @param {boolean} isReverse Set to true to check top, false for bottom.
*
* @return {boolean} True if at the vertical edge, false if not.
*/
export default function isVerticalEdge(container: HTMLElement, isReverse: boolean): boolean;
//# sourceMappingURL=is-vertical-edge.d.ts.map