read-gedcom
Version:
Gedcom file reader
14 lines • 550 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SelectionGedcomFile = void 0;
const internal_1 = require("./internal");
class SelectionGedcomFile extends internal_1.SelectionAny {
getVersion() {
return this.get("VERS" /* Tag.Version */, null, internal_1.SelectionGedcomVersion);
}
getGedcomForm() {
return this.get("FORM" /* Tag.Format */, null, internal_1.SelectionGedcomForm);
}
}
exports.SelectionGedcomFile = SelectionGedcomFile;
//# sourceMappingURL=SelectionGedcomFile.js.map