githrun

A CLI tool to run Python scrip...
Log | Files | Refs | README | LICENSE

constants.d.ts (623B)


      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 "node:os";
      4     import { constants as cryptoConstants } from "node:crypto";
      5     import { constants as fsConstants } from "node:fs";
      6 
      7     const exp:
      8         & typeof osConstants.errno
      9         & typeof osConstants.priority
     10         & SignalConstants
     11         & typeof cryptoConstants
     12         & typeof fsConstants;
     13     export = exp;
     14 }
     15 
     16 declare module "node:constants" {
     17     import constants = require("constants");
     18     export = constants;
     19 }
© notamitgamer • Site Built: 2026-07-21 13:58:23 UTC • git-mirror commit: 1037f62 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror