mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-11 11:50:54 +08:00
12 lines
347 B
TypeScript
12 lines
347 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/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference path="../node/node.d.ts" />
|
|
|
|
declare module 'graceful-fs' {
|
|
import fs = require('fs');
|
|
export = fs;
|
|
}
|