read-gedcom
Version:
Gedcom file reader
14 lines • 576 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SelectionFamilyEvent = void 0;
const internal_1 = require("./internal");
class SelectionFamilyEvent extends internal_1.SelectionEvent {
getHusbandDetails() {
return this.get("HUSB" /* Tag.Husband */, null, internal_1.SelectionSpouseEventDetails);
}
getWifeDetails() {
return this.get("WIFE" /* Tag.Wife */, null, internal_1.SelectionSpouseEventDetails);
}
}
exports.SelectionFamilyEvent = SelectionFamilyEvent;
//# sourceMappingURL=SelectionFamilyEvent.js.map