UNPKG

usb-mountpoint

Version:

Library for listing USB mass storage devices, their serial numbers and mount points

8 lines (7 loc) 158 B
export interface USBDevice { serialNumber: string; mountPoint: string; } export interface Implementation { listDevices(): Promise<USBDevice[]>; }