import { JsonPresentation } from '../../shared/dto/jsonPresentation.dto.js'; export type DcqlPresentationItem = string | JsonPresentation; /** * Maps Credential Query IDs to one or more matching Presentations. * * - Key: Credential Query `id` * - Value: array of Presentations */ export interface DcqlPresentation { [credentialQueryId: string]: DcqlPresentationItem[]; }