@ekristoffe/node-disk-info
Version:
Node module to get disk information in Windows, Linux & Mac. It works with Electron.
32 lines (31 loc) • 541 B
TypeScript
/**
* Type for JSON version of drive.
*
* @author Cristiam Mercado
*/
export interface IDriveJson {
/**
* Drive filesystem.
*/
filesystem: string;
/**
* Blocks associated to disk.
*/
blocks: number;
/**
* Used disk space.
*/
used: number;
/**
* Available disk space.
*/
available: number;
/**
* Disk capacity.
*/
capacity: string;
/**
* Indicates the mount point of the disk.
*/
mounted: string;
}