1.0.5 • Published 6 months ago

@types/gulp-tap v1.0.5

Weekly downloads
993
License
MIT
Repository
github
Last release
6 months ago

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

// Type definitions for gulp-tap 1.0
// Project: https://github.com/geejs/gulp-tap
// Definitions by: DefinitelyTyped <https://github.com/DefinitelyTyped>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <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 DefinitelyTyped.

1.0.5

6 months ago

1.0.4

7 months ago

1.0.3

8 months ago

1.0.2

1 year ago

1.0.1

2 years ago

1.0.0

5 years ago