2.5.4 • Published 6 months ago

@types/gulp-strip-comments v2.5.4

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

Installation

npm install --save @types/gulp-strip-comments

Summary

This package contains type definitions for gulp-strip-comments (https://github.com/RnbWd/gulp-strip-comments).

Details

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

index.d.ts

// Type definitions for gulp-strip-comments 2.5
// Project: https://github.com/RnbWd/gulp-strip-comments
// Definitions by: Aqours <https://github.com/Aqours>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

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

declare namespace stripComments {
    interface StripOptions {
        safe?: boolean | undefined;
        ignore?: RegExp | RegExp[] | undefined;
        space?: boolean | undefined;
        trim?: boolean | undefined;
    }

    interface Strip {
        (options?: StripOptions): NodeJS.ReadWriteStream;
        text(options?: StripOptions): NodeJS.ReadWriteStream;
        html(options?: StripOptions): NodeJS.ReadWriteStream;
        getEOL(): string;
    }
}

declare const strip: stripComments.Strip;

export = strip;

Additional Details

  • Last updated: Thu, 08 Jul 2021 14:22:35 GMT
  • Dependencies: @types/node
  • Global values: none

Credits

These definitions were written by Aqours.

2.5.4

6 months ago

2.5.3

7 months ago

2.5.2

1 year ago

2.5.1

3 years ago

2.5.0

6 years ago