Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/@types/node/constants.d.ts')
-rw-r--r--assets/node_modules/@types/node/constants.d.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/assets/node_modules/@types/node/constants.d.ts b/assets/node_modules/@types/node/constants.d.ts
new file mode 100644
index 0000000..d124ae6
--- /dev/null
+++ b/assets/node_modules/@types/node/constants.d.ts
@@ -0,0 +1,8 @@
+/** @deprecated since v6.3.0 - use constants property exposed by the relevant module instead. */
+declare module "constants" {
+ import { constants as osConstants, SignalConstants } from 'os';
+ import { constants as cryptoConstants } from 'crypto';
+ import { constants as fsConstants } from 'fs';
+ const exp: typeof osConstants.errno & typeof osConstants.priority & SignalConstants & typeof cryptoConstants & typeof fsConstants;
+ export = exp;
+}