@ahryman40k/ts-fhir-types
Version:
Typescript / Javascript object model for FHIR standard Model follows FHIR R4 specifications.
33 lines • 1.81 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.RTTI_dateTime = exports.RTTI_dateTimeType = void 0;
var io_ts_1 = require("io-ts");
var RTTI_dateTimeType = (function (_super) {
__extends(RTTI_dateTimeType, _super);
function RTTI_dateTimeType() {
var _this = _super.call(this, 'RTTI_dateTimeType', function (m) {
return typeof m === 'string' && RTTI_dateTimeType.regexExp.test(m.toString());
}, function (m, c) { return (_this.is(m) ? (0, io_ts_1.success)(m) : (0, io_ts_1.failure)(m, c)); }, io_ts_1.identity) || this;
return _this;
}
RTTI_dateTimeType.regexExp = /^([0-9]([0-9]([0-9][1-9]|[1-9]0)|[1-9]00)|[1-9]000)(-(0[1-9]|1[0-2])(-(0[1-9]|[1-2][0-9]|3[0-1])(T([01][0-9]|2[0-3]):[0-5][0-9]:([0-5][0-9]|60)(\.[0-9]+)?(Z|(\+|-)((0[0-9]|1[0-3]):[0-5][0-9]|14:00)))?)?)?$/;
return RTTI_dateTimeType;
}(io_ts_1.Type));
exports.RTTI_dateTimeType = RTTI_dateTimeType;
exports.RTTI_dateTime = new RTTI_dateTimeType();
//# sourceMappingURL=RTTI_dateTime.js.map