mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
20 lines
443 B
TypeScript
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;
|
|
}
|
|
|