10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
|
import { LiteElement } from './Element.js';
|
||
|
export declare class LiteDocument {
|
||
|
root: LiteElement;
|
||
|
head: LiteElement;
|
||
|
body: LiteElement;
|
||
|
type: string;
|
||
|
get kind(): string;
|
||
|
constructor();
|
||
|
}
|