Document.d.ts 212 B

123456789
  1. import { LiteElement } from './Element.js';
  2. export declare class LiteDocument {
  3. root: LiteElement;
  4. head: LiteElement;
  5. body: LiteElement;
  6. type: string;
  7. get kind(): string;
  8. constructor();
  9. }