import type { JsonObject } from '../../../../types' import type { SingleOrArray } from '../../../../utils' export interface W3cJsonCredential { '@context': Array id?: string type: Array issuer: string | { id?: string } issuanceDate: string expirationDate?: string credentialSubject: SingleOrArray [key: string]: unknown }