| 12345678910 |
- export declare class ContactAddress {
- static fromPrefixedString(prefixed: string): ContactAddress;
- type: string;
- address: string;
- constructor(type: string, address: string);
- matches(search: string): boolean;
- matchesExactly(addressType: string, addressValue: string): boolean;
- toPrefixedString(): string;
- }
|