0.1.5 • Published 6 months ago

@types/gulp-intercept v0.1.5

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

Installation

npm install --save @types/gulp-intercept

Summary

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

Details

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

index.d.ts

// Type definitions for gulp-intercept 0.1
// Project: https://github.com/khilnani/gulp-intercept
// Definitions by: DefinitelyTyped <https://github.com/DefinitelyTyped>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

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

import Vinyl = require('vinyl');

declare namespace intercept {
    interface Intercept {
        (interceptFunction: InterceptFunction): NodeJS.ReadWriteStream;
    }

    interface InterceptFunction {
        (file: Vinyl): Vinyl;
    }
}

declare var intercept: intercept.Intercept;

export = intercept;

Additional Details

Credits

These definitions were written by DefinitelyTyped.

0.1.4

7 months ago

0.1.3

8 months ago

0.1.5

6 months ago

0.1.2

1 year ago

0.1.1

2 years ago

0.1.0

5 years ago