chromium/third_party/blink/renderer/modules/credentialmanagement/digital_credential_request_options.idl

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// https://wicg.github.io/digital-identities/#the-digitalcredentialrequestoptions-dictionary
dictionary DigitalCredentialRequestOptions {
    required sequence<IdentityRequestProvider> providers;
};

// https://wicg.github.io/digital-identities/#dom-identityrequestprovider
dictionary IdentityRequestProvider {
  required DOMString protocol;
  required (object or DOMString) request;
};