QRScanResultTypes

interface QrScanResult {
  id: string;
  thid: string;
  from: string;
  typ: string;
  type: string;
  body: QrScanResultBody;
}

interface QrScanResultBody {
  reason: string;
  callbackUrl: string;
  nonce: string;
  issuer?: IssuerInfo;
  credentials?: any;
  scope?: any;
}

Last updated