UNPKG

read-gedcom

Version:
14 lines (13 loc) 500 B
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; }