版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1 год назад
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;