版博士V2.0程序
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

1234567891011121314
  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;