DefinitelyTyped/types/vinyl-buffer/index.d.ts
2017-12-15 11:40:39 +09:00

15 lines
375 B
TypeScript

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