Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

Commit

Permalink
fix: missed declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
Denys committed Aug 16, 2023
1 parent d8e3b6d commit 1d07186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/core/src/CommonNetworkMember/BaseNetworkMember.ts
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,7 @@ export abstract class BaseNetworkMember {
*
* error - validation error
*/
async checkCredentialStatus(credential): Promise<{ verified: boolean; error?: string }> {
async checkCredentialStatus(credential: any): Promise<{ verified: boolean; error?: string }> {
const result = await this._affinity.checkCredentialStatus(credential)
return result
}
Expand Down

0 comments on commit 1d07186

Please sign in to comment.