acebase/src/node.d.ts
Ewout Stortenbeker 288c4e1e8f chore: build
2022-10-24 20:04:26 +02:00

14 lines
No EOL
289 B
TypeScript

export declare class Node {
static get VALUE_TYPES(): Readonly<{
OBJECT: 1;
ARRAY: 2;
NUMBER: 3;
BOOLEAN: 4;
STRING: 5;
BIGINT: 7;
DATETIME: 6;
BINARY: 8;
REFERENCE: 9;
}>;
}
//# sourceMappingURL=node.d.ts.map