UNPKG

@transmute/bbs-bls12381-signature-2020

Version:
26 lines (25 loc) 492 B
/** * Options for verifying a proof */ export interface VerifyProofOptions { /** * The proof */ readonly proof: any; /** * The document */ readonly document: any; /** * The proof purpose to specify for the generated proof */ readonly purpose: any; /** * Optional custom document loader */ documentLoader?: Function; /** * Optional expansion map */ expansionMap?: Function; }