blob: 5c9da5fc7ac53fc45d25e585b657f73cc8fa9d9e [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/#usbisochronousouttransferpacket
[
RuntimeEnabled=WebUSB,
Constructor(USBTransferStatus status, optional unsigned long bytesWritten = 0)
] interface USBIsochronousOutTransferPacket {
readonly attribute unsigned long bytesWritten;
readonly attribute USBTransferStatus status;
};