decova-dotnet-developer
Version:
This package provides fundumentals that a .net developer may miss while working with Typescript, whether they are missing functinalities or funcionalities provided in a non-elegant design in javascript. Bad naming, bad design of optional parameters, non-c
10 lines • 393 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DateFormat = void 0;
var DateFormat;
(function (DateFormat) {
DateFormat["yyyy_MM_dd"] = "yyyy_MM_dd";
DateFormat["dd_MM_yyy"] = "dd_MM_yyy";
DateFormat["MM_dd_yyyy"] = "MM_dd_yyyy";
})(DateFormat = exports.DateFormat || (exports.DateFormat = {}));
//# sourceMappingURL=DateFormat.js.map