/// import { W3CUSBEndpoint } from "./interfaces"; /** * USB Endpoint */ export declare class USBEndpoint implements W3CUSBEndpoint { /** * The number of this endpoint */ readonly endpointNumber: number; /** * The direction of this endpoint */ readonly direction: USBDirection; /** * The type of this endpoint */ readonly type: USBEndpointType; /** * The packet size of this endpoint */ readonly packetSize: number; /** * @hidden */ constructor(init?: Partial); }