版博士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 lines
250 B

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