0.2.3 • Published 2 years ago

@types/gulp-clean-dest v0.2.3

Weekly downloads
22
License
MIT
Repository
github
Last release
2 years ago

Installation

npm install --save @types/gulp-clean-dest

Summary

This package contains type definitions for gulp-clean-dest (https://github.com/clark800/gulp-clean-dest).

Details

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

index.d.ts

// Type definitions for gulp-clean-dest 0.2
// Project: https://github.com/clark800/gulp-clean-dest
// Definitions by: Andrey Lalev <https://github.com/andypyrope>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

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

declare namespace gulpCleanDest {
    interface Options {
        /**
         * The working directory the folder is relative to.
         */
        cwd?: string | undefined;

        /**
         * Extension of the destination files. Useful if it differs from the original.
         */
        extension?: string | undefined;
    }
}

/**
 * Removes files from the dest directory prior to building.
 * @param destination The name of the dest directory
 * @param options Options for the cleaning process
 */
declare function gulpCleanDest(destination: string, options?: gulpCleanDest.Options): NodeJS.ReadWriteStream;

export = gulpCleanDest;

Additional Details

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

Credits

These definitions were written by Andrey Lalev.

0.2.3

2 years ago

0.2.2

2 years ago

0.2.1

4 years ago

0.2.0

8 years ago