mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-01 16:49:30 +08:00
14 lines
250 B
Text
14 lines
250 B
Text
/**
|
|
List of the Node.js builtin modules.
|
|
|
|
@example
|
|
```
|
|
import builtinModules = require('builtin-modules');
|
|
|
|
console.log(builtinModules);
|
|
//=> ['assert', 'buffer', …]
|
|
```
|
|
*/
|
|
declare const builtinModules: readonly string[];
|
|
|
|
export = builtinModules;
|