mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 21:31:12 +08:00
18 lines
389 B
TypeScript
18 lines
389 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/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node" />
|
|
|
|
|
|
declare namespace buffer {
|
|
interface Buffer {
|
|
(): NodeJS.ReadWriteStream;
|
|
}
|
|
}
|
|
|
|
declare var buffer: buffer.Buffer;
|
|
|
|
export = buffer;
|