more doc cleanup

This commit is contained in:
balzack 2025-03-02 22:45:33 -08:00
parent a1c31850c3
commit bc641dde93
2 changed files with 5 additions and 1 deletions

View File

@ -292,6 +292,10 @@ Configure allocates the Service interface for the server
```Contact::flagCard(cardId: string): Promise<void>```
Request a peer-to-peer link to a contact
```Contact::callCard(cardId: string): Promise<Link>```
</ul>
<br>

View File

@ -84,7 +84,7 @@ export interface Contact {
setBlockedCard(cardId: string, blocked: boolean): Promise<void>;
getRegistry(handle: string | null, server: string | null): Promise<Profile[]>;
callCard(cardId: string, ringInterval: number): Promise<Link>;
callCard(cardId: string): Promise<Link>;
addCardListener(ev: (cards: Card[]) => void): void;
removeCardListener(ev: (cards: Card[]) => void): void;