Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / protobufjs / node_modules / @types / node / constants.d.ts
1 /** @deprecated since v6.3.0 - use constants property exposed by the relevant module instead. */
2 declare 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 }