UNPKG

usb-mountpoint

Version:

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

6 lines (5 loc) 245 B
import { Implementation, USBDevice } from '../interfaces'; export declare class LinuxImplementation implements Implementation { listDevices(): Promise<USBDevice[]>; protected findMount(deviceName: string): Promise<string | undefined>; }