Files
DefinitelyTyped/mz/index.d.ts
Ron Buckton cb0e522a9d Break mz into modules, remove unused bluebird reference (#11549)
* Break mz into modules, remove unused bluebird reference

* Fix incorrect import
2016-10-03 12:50:07 -07:00

16 lines
640 B
TypeScript

// Type definitions for mz
// Project: https://github.com/normalize/mz
// Definitions by: Thomas Hickman <https://github.com/ThomasHickman>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// Modified from the node.js definitions https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/node/node.d.ts
/// <reference types="node" />
import * as child_process from "mz/child_process";
import * as crypto from "mz/crypto";
import * as dns from "mz/dns";
import * as fs from "mz/fs";
import * as readline from "mz/readline";
import * as zlib from "mz/zlib";
export { child_process, crypto, dns, fs, readline, zlib };