|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
288 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 | /**
|
|---|
| 2 | Static list of the Node.js builtin modules.
|
|---|
| 3 |
|
|---|
| 4 | @example
|
|---|
| 5 | ```
|
|---|
| 6 | import builtinModulesStatic = require('builtin-modules/static');
|
|---|
| 7 |
|
|---|
| 8 | console.log(builtinModulesStatic);
|
|---|
| 9 | //=> ['assert', 'buffer', …]
|
|---|
| 10 | ```
|
|---|
| 11 | */
|
|---|
| 12 | declare const builtinModulesStatic: readonly string[];
|
|---|
| 13 |
|
|---|
| 14 | export = builtinModulesStatic;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.