DefinitelyTyped/types/mz/index.d.ts
ExE Boss 6c73b9964e feat(mz): Update to v2.7 (#39277)
* feat(mz): Update to v2.7

* fix(mz): Keep support for TypeScript 2.0

* fix(mz): Add myself to the contributors list

* test(mz): Refactor tests to remove override in `.editorconfig`

* chore(mz): Remove `.editorconfig` 😡️

* fix(mz): Fix name of `dest` parameter in `fs.copyFile(…)`

* refactor(mz): Remove need for setting `"unified‑signatures": false`
2019-11-22 08:46:01 -08:00

19 lines
707 B
TypeScript

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