forked from jsnbuchanan/crowd-funder-for-time-pwa
add contact-methods to a contact
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
export interface ContactMethod {
|
||||
label: string;
|
||||
type: string; // eg. "EMAIL", "SMS", "WHATSAPP"
|
||||
value: string;
|
||||
}
|
||||
|
||||
export interface Contact {
|
||||
did: string;
|
||||
contactMethods?: Array<ContactMethod>;
|
||||
name?: string;
|
||||
nextPubKeyHashB64?: string; // base64-encoded SHA256 hash of next public key
|
||||
notes?: string;
|
||||
|
||||
Reference in New Issue
Block a user