Urara-Blog/node_modules/.pnpm-store/v3/files/ec/39c8be741f0cdee55cc14ac9d169c8faa5fcd511ae9ea22c2424b92e82994db53155d0ff969d78aeb33c99f8e10e0d57827621701b5114653e36c334207201
2022-08-14 01:14:53 +08:00

18 lines
395 B
Text

/**
Get the real path of the system temp directory.
@example
```
import * as os from 'os';
import tempDirectory = require('temp-dir');
console.log(tempDirectory);
//=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T'
console.log(os.tmpdir());
//=> '/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T' // <= Symlink
```
*/
declare const tempDirectory: string;
export = tempDirectory;