blob: e8b950bd383462556c81dd47b9834cf14134bffd [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
[
RuntimeEnabled=WebUSB,
Constructor(USBTransferStatus status, optional DataView? data)
] interface USBInTransferResult {
readonly attribute DataView? data;
readonly attribute USBTransferStatus status;
};