UNPKG

read-gedcom

Version:
48 lines 3.67 kB
"use strict"; /** * @module Parsing */ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __exportStar = (this && this.__exportStar) || function(m, exports) { for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.indexTree = exports.ErrorDuplicatePointer = exports.ErrorIndexing = exports.ErrorEmptyTree = exports.ErrorTreeStructure = exports.ErrorInvalidRecordDefinition = exports.ErrorInvalidConcatenation = exports.ErrorInvalidNesting = exports.ErrorTreeSyntax = exports.ErrorTokenization = exports.ErrorUnsupportedCharset = exports.ErrorInvalidFileType = exports.ErrorParse = exports.ErrorGedcomBase = exports.GedcomReadingPhase = exports.parseGedcom = void 0; __exportStar(require("./value"), exports); var reader_1 = require("./reader"); Object.defineProperty(exports, "parseGedcom", { enumerable: true, get: function () { return reader_1.parseGedcom; } }); /** * @category Gedcom parser */ var GedcomReadingPhase_1 = require("./GedcomReadingPhase"); Object.defineProperty(exports, "GedcomReadingPhase", { enumerable: true, get: function () { return GedcomReadingPhase_1.GedcomReadingPhase; } }); /** * @category Errors */ var error_1 = require("./error"); Object.defineProperty(exports, "ErrorGedcomBase", { enumerable: true, get: function () { return error_1.ErrorGedcomBase; } }); Object.defineProperty(exports, "ErrorParse", { enumerable: true, get: function () { return error_1.ErrorParse; } }); Object.defineProperty(exports, "ErrorInvalidFileType", { enumerable: true, get: function () { return error_1.ErrorInvalidFileType; } }); Object.defineProperty(exports, "ErrorUnsupportedCharset", { enumerable: true, get: function () { return error_1.ErrorUnsupportedCharset; } }); Object.defineProperty(exports, "ErrorTokenization", { enumerable: true, get: function () { return error_1.ErrorTokenization; } }); Object.defineProperty(exports, "ErrorTreeSyntax", { enumerable: true, get: function () { return error_1.ErrorTreeSyntax; } }); Object.defineProperty(exports, "ErrorInvalidNesting", { enumerable: true, get: function () { return error_1.ErrorInvalidNesting; } }); Object.defineProperty(exports, "ErrorInvalidConcatenation", { enumerable: true, get: function () { return error_1.ErrorInvalidConcatenation; } }); Object.defineProperty(exports, "ErrorInvalidRecordDefinition", { enumerable: true, get: function () { return error_1.ErrorInvalidRecordDefinition; } }); Object.defineProperty(exports, "ErrorTreeStructure", { enumerable: true, get: function () { return error_1.ErrorTreeStructure; } }); Object.defineProperty(exports, "ErrorEmptyTree", { enumerable: true, get: function () { return error_1.ErrorEmptyTree; } }); Object.defineProperty(exports, "ErrorIndexing", { enumerable: true, get: function () { return error_1.ErrorIndexing; } }); Object.defineProperty(exports, "ErrorDuplicatePointer", { enumerable: true, get: function () { return error_1.ErrorDuplicatePointer; } }); var indexer_1 = require("./indexer"); Object.defineProperty(exports, "indexTree", { enumerable: true, get: function () { return indexer_1.indexTree; } }); //# sourceMappingURL=index.js.map