read-gedcom
Version:
Gedcom file reader
14 lines • 468 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SelectionWithNoteMixin = void 0;
const internal_1 = require("../internal");
/**
* @ignore
*/
const SelectionWithNoteMixin = (Base) => class extends Base {
getNote() {
return this.get("NOTE" /* Tag.Note */, null, internal_1.SelectionNoteReferenceMixed);
}
};
exports.SelectionWithNoteMixin = SelectionWithNoteMixin;
//# sourceMappingURL=SelectionWithNoteMixin.js.map