blob: e0120ee0ec972f5024abac88bbac515c4f008412 [file] [log] [blame]
// Copyright 2016 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/#usbisochronousintransferresult
[
RuntimeEnabled=WebUSB,
Constructor(sequence<USBIsochronousInTransferPacket> packets,
optional DataView? data)
] interface USBIsochronousInTransferResult {
readonly attribute DataView? data;
readonly attribute FrozenArray<USBIsochronousInTransferPacket> packets;
};