UNPKG

di-wings

Version:

Aviary Tech's common library for decentralized identity

13 lines 428 B
import { type VerifiableCredential } from './credential'; import { type ProofType } from '../proofs/data-integrity'; export interface Presentation { '@context': string[]; id?: string; type: string[]; verifiableCredential: VerifiableCredential[]; holder?: string; } export interface VerifiablePresentation extends Presentation { proof: ProofType[] | ProofType; } //# sourceMappingURL=presentation.d.ts.map