Files
integrations/ts/protocols/usb/index.ts
T

8 lines
153 B
TypeScript
Raw Normal View History

2026-05-05 12:01:30 +00:00
export interface IUsbDeviceDescriptor {
vendorId: number;
productId: number;
manufacturer?: string;
product?: string;
serialNumber?: string;
}