UNPKG

459 BTypeScriptView Raw
1/** @deprecated since v6.3.0 - use constants property exposed by the relevant module instead. */
2declare module "constants" {
3 import { constants as osConstants, SignalConstants } from 'os';
4 import { constants as cryptoConstants } from 'crypto';
5 import { constants as fsConstants } from 'fs';
6 const exp: typeof osConstants.errno & typeof osConstants.priority & SignalConstants & typeof cryptoConstants & typeof fsConstants;
7 export = exp;
8}