mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
This should allow a developer to write a gulpfile in TypeScript to compile a TypeScript project.
11 lines
400 B
TypeScript
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;
|
|
} |