-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.js
40 lines (21 loc) · 1012 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
(function() {
var exceptions, properties;
exports.Document = require('./lib/document');
properties = require('./lib/properties');
exports.StringProperty = properties.StringProperty;
exports.TextProperty = properties.TextProperty;
exports.KeywordProperty = properties.KeywordProperty;
exports.IntegerProperty = properties.IntegerProperty;
exports.FloatProperty = properties.FloatProperty;
exports.BooleanProperty = properties.BooleanProperty;
exports.DateProperty = properties.DateProperty;
exports.ListProperty = properties.ListProperty;
exports.ObjectProperty = properties.ObjectProperty;
exports.ReferenceProperty = properties.ReferenceProperty;
exceptions = require('./lib/exceptions');
exports.ArgumentError = exceptions.ArgumentError;
exports.ValueRequiredError = exceptions.ValueRequiredError;
exports.TypeError = exceptions.TypeError;
exports.OperationError = exceptions.OperationError;
exports.SyntaxError = exceptions.SyntaxError;
}).call(this);