/** * The result returned from a verify operation */ export interface BbsVerifyResult { /** * Indicates whether the verification was successful */ readonly verified: boolean; /** * Messages to sign */ readonly error?: string; }