UNPKG

477 BTypeScriptView Raw
1
2// Source files:
3//
4
5
6interface BaseType {
7 _exists: boolean;
8 _namespace: string;
9}
10export interface _any extends BaseType { content: any; }
11
12export interface _boolean extends BaseType { content: boolean; }
13
14export interface _Date extends BaseType { content: Date; }
15
16export interface _number extends BaseType { content: number; }
17
18export interface _string extends BaseType { content: string; }
19
20export interface document extends BaseType {
21}
22export var document: document;