mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Improvement node.d.ts typings
This commit is contained in:
Vendored
+1
-1
@@ -919,7 +919,7 @@ declare module NodeJs {
|
||||
readlinkSync(path: string): string;
|
||||
realpath(path: string, callback?: (err: ErrnoException, resolvedPath: string) => any): void;
|
||||
realpath(path: string, cache: {[path: string]: string}, callback: (err: ErrnoException, resolvedPath: string) =>any): void;
|
||||
realpathSync(path: string, cache?: {[path: string]: string}): void;
|
||||
realpathSync(path: string, cache?: {[path: string]: string}): string;
|
||||
unlink(path: string, callback?: (err?: ErrnoException) => void): void;
|
||||
unlinkSync(path: string): void;
|
||||
rmdir(path: string, callback?: (err?: ErrnoException) => void): void;
|
||||
|
||||
Reference in New Issue
Block a user