mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
12 lines
343 B
TypeScript
12 lines
343 B
TypeScript
// 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;
|
|
}
|