UNPKG

401 BTypeScriptView Raw
1import { HTML5BackendContext, HTML5BackendOptions } from './types';
2export declare class OptionsReader {
3 ownerDocument: Document | null;
4 private globalContext;
5 private optionsArgs?;
6 constructor(globalContext: HTML5BackendContext, options?: HTML5BackendOptions);
7 get window(): Window | undefined;
8 get document(): Document | undefined;
9 get rootElement(): Node | undefined;
10}