@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
21 lines (18 loc) • 648 B
text/typescript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License in the project root for license information.
*--------------------------------------------------------------------------------------------*/
/**
* Interface defining verification results.
*/
export default interface IVerificationResult {
// The crypto algorithm suites used for cryptography
/**
* Verification result
*/
result: boolean;
/**
* Reason of verification failure
*/
reason: string;
}