We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a247f1 commit 1b59f63Copy full SHA for 1b59f63
napi/parser/README.md
@@ -85,13 +85,13 @@ export interface EcmaScriptModule {
85
* Dynamic imports `import('foo')` are ignored since they can be used in non-ESM files.
86
*/
87
hasModuleSyntax: boolean;
88
- /** Import statements. */
+ /** Import statements */
89
staticImports: Array<StaticImport>;
90
- /** Export statements. */
+ /** Export statements */
91
staticExports: Array<StaticExport>;
92
- /** Dynamic import expressions. */
+ /** Dynamic import expressions */
93
dynamicImports: Array<DynamicImport>;
94
- /** Span positions` of `import.meta` */
+ /** Span positions of `import.meta` */
95
importMetas: Array<Span>;
96
}
97
```
0 commit comments