@leordev-web5/api
Version:
SDK for accessing the features and capabilities of Web5
19 lines • 410 B
TypeScript
import type { Web5Agent } from '@web5/agent';
/**
* The VC API is used to issue, present and verify VCs
*
* @beta
*/
export declare class VcApi {
private agent;
private connectedDid;
constructor(options: {
agent: Web5Agent;
connectedDid: string;
});
/**
* Issues a VC (Not implemented yet)
*/
create(): Promise<void>;
}
//# sourceMappingURL=vc-api.d.ts.map