mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Add definitions for node-tmp library
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
/// <reference path="tmp.d.ts" />
|
||||
import tmp = require('tmp');
|
||||
|
||||
tmp.file((err, path, fd, cleanupCallback) => {
|
||||
if (err) throw err;
|
||||
|
||||
console.log("File: ", path);
|
||||
console.log("Filedescriptor: ", fd);
|
||||
|
||||
cleanupCallback();
|
||||
});
|
||||
|
||||
tmp.dir((err, path, cleanupCallback) => {
|
||||
if (err) throw err;
|
||||
|
||||
console.log("Dir: ", path);
|
||||
|
||||
cleanupCallback();
|
||||
});
|
||||
|
||||
tmp.tmpName((err, path) => {
|
||||
if (err) throw err;
|
||||
|
||||
console.log("Created temporary filename: ", path);
|
||||
});
|
||||
|
||||
tmp.file({ mode: 644, prefix: 'prefix-', postfix: '.txt' }, (err, path, fd) => {
|
||||
if (err) throw err;
|
||||
|
||||
console.log("File: ", path);
|
||||
console.log("Filedescriptor: ", fd);
|
||||
});
|
||||
|
||||
tmp.dir({ mode: 750, prefix: 'myTmpDir_' }, (err, path) => {
|
||||
if (err) throw err;
|
||||
|
||||
console.log("Dir: ", path);
|
||||
});
|
||||
|
||||
tmp.tmpName({ template: '/tmp/tmp-XXXXXX' }, (err, path) => {
|
||||
if (err) throw err;
|
||||
|
||||
console.log("Created temporary filename: ", path);
|
||||
});
|
||||
|
||||
tmp.setGracefulCleanup();
|
||||
Reference in New Issue
Block a user