read-gedcom
Version:
Gedcom file reader
10 lines • 334 B
JavaScript
import { SelectionDate, SelectionAny } from './internal';
export class SelectionDataSource extends SelectionAny {
getDate() {
return this.get("DATE" /* Tag.Date */, null, SelectionDate);
}
getCopyright() {
return this.get("COPR" /* Tag.Copyright */);
}
}
//# sourceMappingURL=SelectionDataSource.js.map