read-gedcom
Version:
Gedcom file reader
14 lines (13 loc) • 834 B
TypeScript
import { SelectionWithAddressMixin, SelectionWithMultimediaMixin } from './mixin';
import { SelectionAny, SelectionDate, SelectionPlace } from './internal';
declare const SelectionEvent_base: typeof SelectionAny & import("../meta").AnyConstructor<import("./mixin").SelectionWithSourceCitationMixin> & import("../meta").AnyConstructor<import("./mixin").SelectionWithNoteMixin> & import("../meta").AnyConstructor<SelectionWithMultimediaMixin> & import("../meta").AnyConstructor<SelectionWithAddressMixin>;
export declare class SelectionEvent extends SelectionEvent_base {
valueAsHappened(): (boolean | null)[];
getType(): SelectionAny;
getDate(): SelectionDate;
getPlace(): SelectionPlace;
getResponsibleAgency(): SelectionAny;
getReligiousAffiliation(): SelectionAny;
getCause(): SelectionAny;
}
export {};