read-gedcom
Version:
Gedcom file reader
11 lines (10 loc) • 343 B
TypeScript
import { SelectionAny } from './internal';
export declare class SelectionAddress extends SelectionAny {
getAddressLine1(): SelectionAny;
getAddressLine2(): SelectionAny;
getAddressLine3(): SelectionAny;
getCity(): SelectionAny;
getState(): SelectionAny;
getPostalCode(): SelectionAny;
getCountry(): SelectionAny;
}