read-gedcom
Version:
Gedcom file reader
11 lines • 416 B
JavaScript
import { SelectionAny } from './internal';
import { SelectionWithNoteMixin } from './mixin';
export class SelectionChildFamilyLink extends SelectionWithNoteMixin(SelectionAny) {
getFamilyRecord() {
return this.root().getFamilyRecord(this.valueNonNull());
}
getPedigreeLinkageType() {
return this.get("PEDI" /* Tag.Pedigree */);
}
}
//# sourceMappingURL=SelectionChildFamilyLink.js.map