UNPKG

@microsoft/useragent-sdk

Version:

SDK for building decentralized identity wallets and enterprise agents.

13 lines (12 loc) 388 B
import { IHubWriteResponse } from '@decentralized-identity/hub-common-js'; /** * Represents the response to a `HubWriteRequest`. */ export default class HubWriteResponse { private response; constructor(response: IHubWriteResponse); /** * Returns the list of known revisions for the object which was created/modified. */ getRevisions(): string[]; }