Skip to content

Commit

Permalink
finish up star exports
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed May 16, 2024
1 parent 4819a23 commit 09313ba
Show file tree
Hide file tree
Showing 3 changed files with 134 additions and 141 deletions.
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,17 +134,13 @@ interface Import {
}
```
### `AbstractModuleSource.prototype.directExports()`
### `AbstractModuleSource.prototype.namedExports()`
Returns a list of the direct export names of the module of the form `String[]`.
Returns a list of the explicit named exports of the module of the form `String[]`.
### `AbstractModuleSource.prototype.starExports()`
Returns a list of the imports which are star re-exported, of the form `Import[]`.
### `AbstractModuleSource.prototype.starExports()`
Returns a list of the star exports of the module of the form `Import[]` as defined in `imports()`.
Returns a list of the imports which are star exported, of the form `Import[]`.
### `AbstractModuleSource.prototype.hasDynamicImport`
Expand Down
Loading

0 comments on commit 09313ba

Please sign in to comment.