source: frontend/node_modules/temp-dir/index.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 395 bytes
RevLine 
[9af201e]1/**
2Get the real path of the system temp directory.
3
4@example
5```
6import * as os from 'os';
7import tempDirectory = require('temp-dir');
8
9console.log(tempDirectory);
10//=> '/private/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T'
11
12console.log(os.tmpdir());
13//=> '/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T' // <= Symlink
14```
15*/
16declare const tempDirectory: string;
17
18export = tempDirectory;
Note: See TracBrowser for help on using the repository browser.