chromium/third_party/blink/renderer/modules/smart_card/smart_card_resource_manager.idl

// Copyright 2022 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/web-smart-card/#smartcardresourcemanager-interface

[
  Exposed=Window,
  RuntimeEnabled=SmartCard,
  SecureContext,
  IsolatedContext
]
interface SmartCardResourceManager {
  [CallWith=ScriptState, RaisesException]
  Promise<SmartCardContext> establishContext();
};