Window.d.ts 466 B

1234567891011121314
  1. import { LiteElement } from './Element.js';
  2. import { LiteDocument } from './Document.js';
  3. import { LiteList } from './List.js';
  4. import { LiteParser } from './Parser.js';
  5. export declare class LiteWindow {
  6. document: LiteDocument;
  7. DOMParser: typeof LiteParser;
  8. NodeList: typeof LiteList;
  9. HTMLCollection: typeof LiteList;
  10. HTMLElement: typeof LiteElement;
  11. DocumentFragment: typeof LiteList;
  12. Document: typeof LiteDocument;
  13. constructor();
  14. }