diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-08-10 17:41:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-10 17:41:19 +0200 |
commit | 6fcf06306ed2ea52031a97b918f1e929d7209250 (patch) | |
tree | 01eaea1836d5ee864aafb57677c9fb4d76e33eba /cli/doc/mod.rs | |
parent | fdb2dab7cd59a70b79704e0a0efca44be2bfc186 (diff) |
feat(doc): handle imports (#6987)
This commit adds additional objects to JSON output
of "deno doc" command to facilitate linking between
types in different modules.
Diffstat (limited to 'cli/doc/mod.rs')
-rw-r--r-- | cli/doc/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/doc/mod.rs b/cli/doc/mod.rs index 49f8d7453..d015d9e4c 100644 --- a/cli/doc/mod.rs +++ b/cli/doc/mod.rs @@ -17,6 +17,7 @@ pub mod variable; pub use node::DocNode; pub use node::DocNodeKind; +pub use node::ImportDef; pub use node::Location; pub use params::ParamDef; pub use parser::DocParser; |