7.3.10 • Published 6 months ago

@types/babelify v7.3.10

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

Installation

npm install --save @types/babelify

Summary

This package contains type definitions for babelify (https://github.com/babel/babelify).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babelify.

index.d.ts

// Type definitions for babelify v7.3.0
// Project: https://github.com/babel/babelify
// Definitions by: TeamworkGuy2 <https://github.com/TeamworkGuy2>
//                 Marvin Hagemeister <https://github.com/marvinhagemeister>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8

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

/** Browserify transform for Babel
 */
import stream = require("stream");
import babel = require("babel-core");

declare function Babelify(filename: string, opts?: Babelify.BabelifyOptions): Babelify.BabelifyObject;

declare namespace Babelify {

    export interface BabelifyConstructor {
        (filename: string, opts: Babelify.BabelifyOptions): Babelify.BabelifyObject;
    }

    /** In addition to the various purposes documented here, all of the babelify options are passed to babel which passes them on to babel.transform() when each file is transformed */
    export interface BabelifyOptions extends babel.TransformOptions {
        /** These are passed to babel.util.canCompile() for each filename
         * default: null
         */
        extensions?: string | string[] | undefined;

        /** if true, a 'sourceFileName' property with a value equal to the current file being transformed is included with the options passed to babel.transform()
         * default: false
         */
        sourceMapsAbsolute?: boolean | undefined;
    }

    export class BabelifyObject extends stream.Transform {
        _transform(buf: string | Buffer, encoding: string, callback: () => void): void;
        _flush(callback: () => void): void;
    }

    export function configure(opts: Babelify.BabelifyOptions): (filename: string) => Babelify.BabelifyObject;
}

export = Babelify;

Additional Details

Credits

These definitions were written by TeamworkGuy2, and Marvin Hagemeister.

7.3.10

6 months ago

7.3.9

7 months ago

7.3.8

8 months ago

7.3.7

3 years ago

7.3.6

6 years ago

7.3.5

7 years ago

7.3.4

8 years ago

7.3.3

8 years ago

7.3.2

8 years ago

7.3.1

8 years ago