forked from electricessence/TypeScript.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTimeUnit.js
More file actions
18 lines (18 loc) · 766 Bytes
/
Copy pathTimeUnit.js
File metadata and controls
18 lines (18 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
* @author electricessence / https://github.com/electricessence/
* Originally based upon .NET source but with many additions and improvements.
* Licensing: MIT https://github.com/electricessence/TypeScript.NET/blob/master/LICENSE.md
*/
var TimeUnit;
(function (TimeUnit) {
TimeUnit[TimeUnit["Ticks"] = 0] = "Ticks";
TimeUnit[TimeUnit["Milliseconds"] = 1] = "Milliseconds";
TimeUnit[TimeUnit["Seconds"] = 2] = "Seconds";
TimeUnit[TimeUnit["Minutes"] = 3] = "Minutes";
TimeUnit[TimeUnit["Hours"] = 4] = "Hours";
TimeUnit[TimeUnit["Days"] = 5] = "Days";
})(TimeUnit || (TimeUnit = {}));
Object.freeze(TimeUnit);
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = TimeUnit;
//# sourceMappingURL=TimeUnit.js.map