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