aladinnetwork-blockstack
Version:
The Aladin Javascript library for authentication, identity, and storage.
14 lines (13 loc) • 458 B
TypeScript
import { Service } from './service';
interface ValidateProofService {
validateProof(proof: any, ownerAddress: string, name?: string): Promise<any>;
getProofUrl(proof: any): string;
getProofStatement(searchText: string): string;
normalizeUrl(proof: any): string;
getProofIdentity(searchText: string): string;
}
/** @ignore */
export declare const profileServices: {
[serviceName: string]: Service & ValidateProofService;
};
export {};