read-gedcom
Version:
Gedcom file reader
14 lines (13 loc) • 500 B
TypeScript
import { AnyConstructor } from '../../meta';
import { SelectionAddress, SelectionAny } from '../internal';
/**
* @ignore
*/
export declare const SelectionWithAddressMixin: <C extends AnyConstructor<SelectionAny>>(Base: C) => C & AnyConstructor<SelectionWithAddressMixin>;
export interface SelectionWithAddressMixin {
getAddress(): SelectionAddress;
getPhoneNumber(): SelectionAny;
getEmailAddress(): SelectionAny;
getFaxAddress(): SelectionAny;
getWebAddress(): SelectionAny;
}