12345678910111213 |
- import { HTMLAdaptor } from './HTMLAdaptor.js';
- declare global {
- interface Window {
- Document: typeof Document;
- DOMParser: typeof DOMParser;
- XMLSerializer: typeof XMLSerializer;
- HTMLElement: typeof HTMLElement;
- HTMLCollection: typeof HTMLCollection;
- NodeList: typeof NodeList;
- DocumentFragment: typeof DocumentFragment;
- }
- }
- export declare function browserAdaptor(): HTMLAdaptor<HTMLElement, Text, Document>;
|