contact-address.d.ts 334 B

12345678910
  1. export declare class ContactAddress {
  2. static fromPrefixedString(prefixed: string): ContactAddress;
  3. type: string;
  4. address: string;
  5. constructor(type: string, address: string);
  6. matches(search: string): boolean;
  7. matchesExactly(addressType: string, addressValue: string): boolean;
  8. toPrefixedString(): string;
  9. }