版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 rivejä
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;