UNPKG

270 BTypeScriptView Raw
1export declare type HTML5BackendContext = Window | undefined;
2/**
3 * Configuration options for the HTML5Backend
4 */
5export interface HTML5BackendOptions {
6 /**
7 * The root DOM node to use for subscribing to events. Default=Window
8 */
9 rootElement: Node;
10}