版博士V2.0程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

15 rader
288 B

  1. /**
  2. Static list of the Node.js builtin modules.
  3. @example
  4. ```
  5. import builtinModulesStatic = require('builtin-modules/static');
  6. console.log(builtinModulesStatic);
  7. //=> ['assert', 'buffer', …]
  8. ```
  9. */
  10. declare const builtinModulesStatic: readonly string[];
  11. export = builtinModulesStatic;