DefinitelyTyped/vinyl-buffer/vinyl-buffer.d.ts
2015-08-24 22:18:47 +09:00

20 lines
443 B
TypeScript

// Type definitions for vinyl-buffer
// Project: https://github.com/hughsk/vinyl-buffer
// Definitions by: Qubo <https://github.com/tkQubo>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../node/node.d.ts" />
declare module "vinyl-buffer" {
namespace buffer {
interface Buffer {
(): NodeJS.ReadWriteStream;
}
}
var buffer: buffer.Buffer;
export = buffer;
}