Type alias UsbDeviceInterface

UsbDeviceInterface: "cdc-acm" | "msc" | {
    onData: ((data: Uint8Array, tx: Writable) => void) | null;
    type: "cdc-acm";
} | {
    storage?: "flash";
    type: "msc";
}