Skip to main content

Backup info

This function returns entities which are unexportable and would not be backed up if a backup were to be created and finalized. This function is informational and does not create a backup file.

Function

backupInfo(): Promise<UnexportableEntities>

Parameters

None

Return value

export interface UnexportableEntities {
credentials: CredentialDetail[];
keys: KeyListItem[];
dids: DidListItem[];
totalCredentials: number;
totalKeys: number;
totalDids: number;
}