0.0.37 • Published 6 months ago

@types/gulp-coffeeify v0.0.37

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

Installation

npm install --save @types/gulp-coffeeify

Summary

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

Details

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

index.d.ts

// Type definitions for gulp-coffeeify
// Project: https://github.com/nariyu/gulp-coffeeify
// Definitions by: Qubo <https://github.com/tkQubo>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

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


declare namespace coffeeify {
    interface Coffeeify {
        (option?: Option): NodeJS.ReadWriteStream;
    }

    interface Option {
        options?: {
            debug?: boolean | undefined;
            paths?: string[] | undefined;
        } | undefined,
        /**
         * [DEPRECATED]: You should use a 'paths' options of browserify.
         */
        aliases?: Aliases | undefined;
        /**
         * [DEPRECATED]
         */
        transforms?: Transforms | undefined;
    }

    type Aliases = Array<{
        cwd?: string | undefined;
        base?: string | undefined;
    }>;

    type Transforms = Array<{
        ext?: string | undefined;
        transform?(data: string): string;
    }>;
}

declare var coffeeify: coffeeify.Coffeeify;

export = coffeeify;

Additional Details

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

Credits

These definitions were written by Qubo.

0.0.35

8 months ago

0.0.36

7 months ago

0.0.37

6 months ago

0.0.34

1 year ago

0.0.33

3 years ago

0.0.32

7 years ago

0.0.31

7 years ago

0.0.30

7 years ago

0.0.29

8 years ago

0.0.28

8 years ago

0.0.27-alpha

8 years ago

0.0.26-alpha

8 years ago

0.0.25-alpha

8 years ago

0.0.24-alpha

8 years ago

0.0.23-alpha

8 years ago

0.0.22-alpha

8 years ago

0.0.21-alpha

8 years ago

0.0.16-alpha

8 years ago

0.0.15-alpha

8 years ago