forked from trent_larson/crowd-funder-for-time-pwa
12 lines
232 B
TypeScript
12 lines
232 B
TypeScript
export interface Contact {
|
|
did: string;
|
|
name?: string;
|
|
publicKeyBase64?: string;
|
|
seesMe?: boolean;
|
|
registered?: boolean;
|
|
}
|
|
|
|
export const ContactsSchema = {
|
|
contacts: "&did, name, publicKeyBase64, registered, seesMe",
|
|
};
|