forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d1f6bde
commit f63be73
Showing
2 changed files
with
492 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,229 @@ | ||
/// <reference path="fs-extra-promise.d.ts" /> | ||
/// <reference path="../node/node.d.ts" /> | ||
|
||
import fs = require('fs-extra-promise'); | ||
import stream = require('stream'); | ||
|
||
var stats: fs.Stats; | ||
var str: string; | ||
var strArr: string[]; | ||
var bool: boolean; | ||
var num: number; | ||
var src: string; | ||
var dest: string; | ||
var file: string; | ||
var filename: string; | ||
var dir: string; | ||
var path: string; | ||
var data: any; | ||
var object: Object; | ||
var buffer: NodeBuffer; | ||
var modeNum: number; | ||
var modeStr: string; | ||
var encoding: string; | ||
var type: string; | ||
var flags: string; | ||
var srcpath: string; | ||
var dstpath: string; | ||
var oldPath: string; | ||
var newPath: string; | ||
var cache: string; | ||
var offset: number; | ||
var length: number; | ||
var position: number; | ||
var cacheBool: boolean; | ||
var cacheStr: string; | ||
var fd: number; | ||
var len: number; | ||
var uid: number; | ||
var gid: number; | ||
var atime: number; | ||
var mtime: number; | ||
var statsCallback: (err: Error, stats: fs.Stats) => void; | ||
var errorCallback: (err: Error) => void; | ||
var openOpts: fs.OpenOptions; | ||
var watcher: fs.FSWatcher; | ||
var readStreeam: stream.Readable; | ||
var writeStream: stream.Writable; | ||
|
||
fs.copy(src, dest, errorCallback); | ||
fs.copy(src, dest, (src: string) => { | ||
return false; | ||
}, errorCallback); | ||
fs.copySync(src, dest); | ||
fs.copySync(src, dest, (src: string) => { | ||
return false; | ||
}); | ||
fs.createFile(file, errorCallback); | ||
fs.createFileSync(file); | ||
|
||
fs.mkdirs(dir, errorCallback); | ||
fs.mkdirsSync(dir); | ||
fs.mkdirp(dir, errorCallback); | ||
fs.mkdirpSync(dir); | ||
|
||
fs.outputFile(file, data, errorCallback); | ||
fs.outputFileSync(file, data); | ||
fs.outputJson(file, data, errorCallback); | ||
fs.outputJSON(file, data, errorCallback); | ||
|
||
fs.outputJsonSync(file, data); | ||
fs.outputJSONSync(file, data); | ||
|
||
fs.readJson(file, errorCallback); | ||
fs.readJson(file, openOpts, errorCallback); | ||
fs.readJSON(file, errorCallback); | ||
fs.readJSON(file, openOpts, errorCallback); | ||
|
||
fs.readJsonSync(file, openOpts); | ||
fs.readJSONSync(file, openOpts); | ||
|
||
fs.remove(dir, errorCallback); | ||
fs.removeSync(dir); | ||
|
||
fs.writeJson(file, object, errorCallback); | ||
fs.writeJson(file, object, openOpts, errorCallback); | ||
fs.writeJSON(file, object, errorCallback); | ||
fs.writeJSON(file, object, openOpts, errorCallback); | ||
|
||
fs.writeJsonSync(file, object, openOpts); | ||
fs.writeJSONSync(file, object, openOpts); | ||
|
||
fs.rename(oldPath, newPath, errorCallback); | ||
fs.renameSync(oldPath, newPath); | ||
fs.truncate(fd, len, errorCallback); | ||
fs.truncateSync(fd, len); | ||
fs.chown(path, uid, gid, errorCallback); | ||
fs.chownSync(path, uid, gid); | ||
fs.fchown(fd, uid, gid, errorCallback); | ||
fs.fchownSync(fd, uid, gid); | ||
fs.lchown(path, uid, gid, errorCallback); | ||
fs.lchownSync(path, uid, gid); | ||
fs.chmod(path, modeNum, errorCallback); | ||
fs.chmod(path, modeStr, errorCallback); | ||
fs.chmodSync(path, modeNum); | ||
fs.chmodSync(path, modeStr); | ||
fs.fchmod(fd, modeNum, errorCallback); | ||
fs.fchmod(fd, modeStr, errorCallback); | ||
fs.fchmodSync(fd, modeNum); | ||
fs.fchmodSync(fd, modeStr); | ||
fs.lchmod(path, modeStr, errorCallback); | ||
fs.lchmod(path, modeNum, errorCallback); | ||
fs.lchmodSync(path, modeNum); | ||
fs.lchmodSync(path, modeStr); | ||
fs.stat(path, statsCallback); | ||
fs.lstat(path, statsCallback); | ||
fs.fstat(fd, statsCallback); | ||
stats = fs.statSync(path); | ||
stats = fs.lstatSync(path); | ||
stats = fs.fstatSync(fd); | ||
fs.link(srcpath, dstpath, errorCallback); | ||
fs.linkSync(srcpath, dstpath); | ||
fs.symlink(srcpath, dstpath, type, errorCallback); | ||
fs.symlinkSync(srcpath, dstpath, type); | ||
fs.readlink(path, (err: Error, linkString: string) => { | ||
|
||
}); | ||
fs.realpath(path, (err: Error, resolvedPath: string) => { | ||
|
||
}); | ||
fs.realpath(path, cache, (err: Error, resolvedPath: string) => { | ||
|
||
}); | ||
str = fs.realpathSync(path, cacheBool); | ||
fs.unlink(path, errorCallback); | ||
fs.unlinkSync(path); | ||
fs.rmdir(path, errorCallback); | ||
fs.rmdirSync(path); | ||
fs.mkdir(path, modeNum, errorCallback); | ||
fs.mkdir(path, modeStr, errorCallback); | ||
fs.mkdirSync(path, modeNum); | ||
fs.mkdirSync(path, modeStr); | ||
fs.readdir(path, (err: Error, files: string[]) => { | ||
|
||
}); | ||
strArr = fs.readdirSync(path); | ||
fs.close(fd, errorCallback); | ||
fs.closeSync(fd); | ||
fs.open(path, flags, modeStr, (err: Error, fd: number) => { | ||
|
||
}); | ||
num = fs.openSync(path, flags, modeStr); | ||
fs.utimes(path, atime, mtime, errorCallback); | ||
fs.utimesSync(path, atime, mtime); | ||
fs.futimes(fd, atime, mtime, errorCallback); | ||
fs.futimesSync(fd, atime, mtime); | ||
fs.fsync(fd, errorCallback); | ||
fs.fsyncSync(fd); | ||
fs.write(fd, buffer, offset, length, position, (err: Error, written: number, buffer: NodeBuffer) => { | ||
|
||
}); | ||
num = fs.writeSync(fd, buffer, offset, length, position); | ||
fs.read(fd, buffer, offset, length, position, (err: Error, bytesRead: number, buffer: NodeBuffer) => { | ||
|
||
}); | ||
num = fs.readSync(fd, buffer, offset, length, position); | ||
fs.readFile(filename, (err: Error, data: NodeBuffer) => { | ||
|
||
}); | ||
fs.readFile(filename, encoding, (err: Error, data: string) => { | ||
|
||
}); | ||
fs.readFile(filename, openOpts, (err: Error, data: string) => { | ||
|
||
}); | ||
fs.readFile(filename, (err: Error, data: NodeBuffer) => { | ||
|
||
}); | ||
buffer = fs.readFileSync(filename); | ||
str = fs.readFileSync(filename, encoding); | ||
str = fs.readFileSync(filename, openOpts); | ||
|
||
fs.writeFile(filename, data, errorCallback); | ||
fs.writeFile(filename, data, encoding, errorCallback); | ||
fs.writeFile(filename, data, openOpts, errorCallback); | ||
fs.writeFileSync(filename, data); | ||
fs.writeFileSync(filename, data, encoding); | ||
fs.writeFileSync(filename, data, openOpts); | ||
|
||
fs.appendFile(filename, data, errorCallback); | ||
fs.appendFile(filename, data, encoding, errorCallback); | ||
fs.appendFile(filename, data, openOpts, errorCallback); | ||
fs.appendFileSync(filename, data); | ||
fs.appendFileSync(filename, data, encoding); | ||
fs.appendFileSync(filename, data, openOpts); | ||
|
||
fs.watchFile(filename, { | ||
curr: stats, | ||
prev: stats | ||
}); | ||
fs.watchFile(filename, { | ||
persistent: bool, | ||
interval: num | ||
}, { | ||
curr: stats, | ||
prev: stats | ||
}); | ||
fs.unwatchFile(filename); | ||
watcher = fs.watch(filename, { persistent: bool }, (event: string, filename: string) => { | ||
|
||
}); | ||
fs.exists(path, (exists: boolean) => { | ||
|
||
}); | ||
bool = fs.existsSync(path); | ||
|
||
readStreeam = fs.createReadStream(path); | ||
readStreeam = fs.createReadStream(path, { | ||
flags: str, | ||
encoding: str, | ||
fd: num, | ||
mode: num, | ||
bufferSize: num | ||
}); | ||
writeStream = fs.createWriteStream(path); | ||
writeStream = fs.createWriteStream(path, { | ||
flags: str, | ||
encoding: str, | ||
string: str | ||
}); |
Oops, something went wrong.