mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
* 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`
19 lines
707 B
TypeScript
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 };
|