survey-core
Version:
A framework-independent core of the SurveyJS Form Library that works with rendering packages. Use it to integrate dynamic, interactive JSON-based forms and surveys into your app, collect user responses, and send them to your own database.
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;
}