read-gedcom
Version:
Gedcom file reader
10 lines • 362 B
JavaScript
import { SelectionMultimediaFormat, SelectionAny } from './internal';
export class SelectionMultimediaFile extends SelectionAny {
getFormat() {
return this.get("FORM" /* Tag.Format */, null, SelectionMultimediaFormat);
}
getTitle() {
return this.get("TITL" /* Tag.Title */);
}
}
//# sourceMappingURL=SelectionMultimediaFile.js.map