import type { PairingCryptoError } from './PairingCryptoError'; /** * The result returned from a signature or proof verify operation */ export interface BbsVerifyResult { /** * Indicates whether the verification was successful */ readonly verified: boolean; /** * Indicates whether an error has occured during verification */ readonly error?: PairingCryptoError; }