Files
DefinitelyTyped/vinyl-source-stream/vinyl-source-stream.d.ts
Phips Peter 429c0c5c7d Adding a bunch of gulp utilities
This should allow a developer to write a gulpfile in TypeScript to
compile a TypeScript project.
2015-01-28 17:23:29 -08:00

11 lines
400 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/borisyankov/DefinitelyTyped
/// <reference path="../node/node.d.ts"/>
declare module "vinyl-source-stream" {
function vinylSourceStream(filename: string): NodeJS.ReadWriteStream;
export = vinylSourceStream;
}