import { JsonCredential } from './jsonCredential.dto.js'; type JwtCredential = string; export interface JsonPresentation { '@context': string[]; type: string | string[]; verifiableCredential: (JwtCredential | JsonCredential)[]; proof: Proof; id?: string; holder?: string; } export interface Proof { type: string; proofPurpose: string; verificationMethod: string; created?: string; cryptosuite?: string; jws?: string; proofValue?: string; }