-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgnd.ts
60 lines (48 loc) · 1.78 KB
/
gnd.ts
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
Ground Web Framework (c) 2011-2013 OptimalBits - Licensed as MIT.
*/
/// <reference path="typings/main.d.ts" />
/// <reference path="./lib/util.ts" />
/// <reference path="./lib/timer.ts" />
/// <reference path="./lib/overload.ts" />
/// <reference path="./lib/base.ts" />
/// <reference path="./lib/task.ts" />
/// <reference path="./lib/promise.ts" />
/// <reference path="./lib/cache.ts" />
/// <reference path="./lib/model.ts" />
/// <reference path="./lib/container/collection.ts" />
/// <reference path="./lib/container/sequence.ts" />
/// <reference path="./lib/model-schema.ts" />
/// <reference path="./lib/container/collection-schema.ts" />
/// <reference path="./lib/container/sequence-schema.ts" />
/// <reference path="./lib/storage/queue.ts" />
/// <reference path="./lib/storage/local.ts" />
/// <reference path="./lib/storage/socket.ts" />
/// <reference path="./lib/storage/ajax.ts" />
/// <reference path="./lib/storage/store/store.ts" />
/// <reference path="./lib/storage/store/local-storage.ts" />
/// <reference path="./lib/storage/store/memory-storage.ts" />
/// <reference path="./lib/sync/sync.ts" />
/// <reference path="./lib/session/session.ts" />
/// <reference path="./lib/route.ts" />
/// <reference path="./lib/view.ts" />
/// <reference path="./lib/viewmodel.ts" />
/// <reference path="./lib/using.ts" />
//
// Adds support for AMD and CommonJs module loaders
//
declare var define;
declare var exports;
(function (root, factory) {
if (typeof exports === 'object') {
root['module'].exports = factory();
} else if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(factory);
} else {
// Browser globals (root is window)
root.returnExports = factory();
}
}(this, function () {
return Gnd;
}));