@govtechsg/open-attestation
Version:
23 lines (22 loc) • 901 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RevocationType = exports.IdentityProofType = exports.TemplateType = void 0;
/**
* Type of renderer template
*/
var TemplateType;
(function (TemplateType) {
TemplateType["EmbeddedRenderer"] = "EMBEDDED_RENDERER";
})(TemplateType || (exports.TemplateType = TemplateType = {}));
var IdentityProofType;
(function (IdentityProofType) {
IdentityProofType["DNSDid"] = "DNS-DID";
IdentityProofType["DNSTxt"] = "DNS-TXT";
IdentityProofType["Did"] = "DID";
})(IdentityProofType || (exports.IdentityProofType = IdentityProofType = {}));
var RevocationType;
(function (RevocationType) {
RevocationType["None"] = "NONE";
RevocationType["OcspResponder"] = "OCSP_RESPONDER";
RevocationType["RevocationStore"] = "REVOCATION_STORE";
})(RevocationType || (exports.RevocationType = RevocationType = {}));