/** * Plain and simple utils for working with process environments. * * Exposes some often used constants and trivial functions. * * This module will *FAIL* to load in runtimes that don't have * a global `process` defined. * * @module */ /** * credit goes to https://stackoverflow.com/questions/19275776/node-js-how-to-get-the-os-platforms-user-data-folder */ export declare const getUserDataDir: () => string;