@types/gulp-tap
TypeScript icon, indicating that this package has built-in type declarations

1.0.5 • Public • Published

Installation

npm install --save @types/gulp-tap

Summary

This package contains type definitions for gulp-tap (https://github.com/geejs/gulp-tap).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-tap.

index.d.ts

/// <reference types="node" />

import Vinyl = require("vinyl");

declare namespace tap {
    interface Tap {
        (tapFunction: TapFunction, t?: any): NodeJS.ReadWriteStream;
    }

    interface TapFunction {
        (file: Vinyl): any;
    }
}

declare function tap(tapFunction: (file: Vinyl, t?: {}) => void): NodeJS.ReadWriteStream;

export = tap;

Additional Details

Credits

These definitions were written by .

Readme

Keywords

none

Package Sidebar

Install

npm i @types/gulp-tap

Weekly Downloads

1,058

Version

1.0.5

License

MIT

Unpacked Size

3.2 kB

Total Files

5

Last publish

Collaborators

  • types