mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-20 12:00:53 +08:00
added definitions for gracefull-fs
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
/// <reference path="graceful-fs.d.ts" />
|
||||
|
||||
import fs = require('graceful-fs');
|
||||
|
||||
var str: string;
|
||||
var buf: NodeBuffer;
|
||||
|
||||
fs.renameSync(str, str);
|
||||
Vendored
+11
@@ -0,0 +1,11 @@
|
||||
// Type definitions for graceful-fs 2.0.0
|
||||
// Project: https://github.com/cowboy/graceful-fs
|
||||
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
/// <reference path="../node/node.d.ts" />
|
||||
|
||||
declare module 'graceful-fs' {
|
||||
import fs = require('fs');
|
||||
export = fs;
|
||||
}
|
||||
Reference in New Issue
Block a user