read-gedcom
Version:
Gedcom file reader
17 lines (16 loc) • 581 B
TypeScript
import { AnyConstructor } from '../../meta';
import { SelectionAny, SelectionNoteReferenceMixed } from '../internal';
/**
* @ignore
*/
export declare const SelectionWithNoteMixin: <C extends AnyConstructor<SelectionAny>>(Base: C) => C & AnyConstructor<SelectionWithNoteMixin>;
export interface SelectionWithNoteMixin {
/**
* The note(s) associated to this attribute.
* <table>
* <tr><th>Tag</th><td><code>NOTE</code></td></tr>
* <tr><th>Multiplicity</th><td><code>*</code></td></tr>
* </table>
*/
getNote(): SelectionNoteReferenceMixed;
}