mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-22 20:39:17 +08:00
16 lines
640 B
TypeScript
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 }; |