blob: 2c9fed6e37bea9f575567ad24d28b6cf137b1159 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://wicg.github.io/webusb/#usbintransferresult
[
Exposed(DedicatedWorker WebUSBOnDedicatedWorkers, Window WebUSB),
Constructor(USBTransferStatus status, optional DataView? data),
SecureContext
] interface USBInTransferResult {
readonly attribute DataView? data;
readonly attribute USBTransferStatus status;
};