mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-01 12:42:58 +08:00
12 lines
393 B
TypeScript
12 lines
393 B
TypeScript
// Type definitions for vinyl-source-stream
|
|
// Project: https://github.com/hughsk/vinyl-source-stream
|
|
// Definitions by: Asana <https://asana.com>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node"/>
|
|
|
|
|
|
declare function vinylSourceStream(filename: string): NodeJS.ReadWriteStream;
|
|
declare namespace vinylSourceStream { }
|
|
export = vinylSourceStream;
|