read-gedcom
Version:
Gedcom file reader
14 lines • 662 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GedcomReadingPhase = void 0;
/**
* Reading phases.
*/
var GedcomReadingPhase;
(function (GedcomReadingPhase) {
GedcomReadingPhase[GedcomReadingPhase["Decoding"] = 0] = "Decoding";
GedcomReadingPhase[GedcomReadingPhase["TokenizationAndStructuring"] = 1] = "TokenizationAndStructuring";
GedcomReadingPhase[GedcomReadingPhase["Indexing"] = 2] = "Indexing";
GedcomReadingPhase[GedcomReadingPhase["Freezing"] = 3] = "Freezing";
})(GedcomReadingPhase = exports.GedcomReadingPhase || (exports.GedcomReadingPhase = {}));
//# sourceMappingURL=GedcomReadingPhase.js.map