UNPKG

@microsoft/useragent-sdk

Version:

SDK for building decentralized identity wallets and enterprise agents.

14 lines (13 loc) 252 B
/** * Interface defining verification results. */ export default interface IVerificationResult { /** * Verification result */ result: boolean; /** * Reason of verification failure */ reason: string; }