UNPKG

492 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
7 const exp: typeof osConstants.errno &
8 typeof osConstants.priority &
9 SignalConstants &
10 typeof cryptoConstants &
11 typeof fsConstants;
12 export = exp;
13}