survey-core
Version:
survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.
9 lines (8 loc) • 388 B
TypeScript
export declare class ElementHelper {
static focusElement(element: Element): void;
static visibility(node: Element): boolean;
static getNextElementPreorder(element: Element): Element;
static getNextElementPostorder(element: Element): Element;
static hasHorizontalScroller(element: HTMLElement): boolean;
static hasVerticalScroller(element: HTMLElement): boolean;
}