@ekristoffe/node-disk-info
Version:
Node module to get disk information in Windows, Linux & Mac. It works with Electron.
18 lines (17 loc) • 380 B
TypeScript
/**
* Class with constants used in the application.
*/
export declare class Constants {
/**
* Command to execute on Windows.
*/
static readonly WINDOWS_COMMAND: string;
/**
* Command to execute on Linux.
*/
static readonly LINUX_COMMAND: string;
/**
* Command to execute on OSX.
*/
static readonly DARWIN_COMMAND: string;
}