diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-03-23 09:54:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 09:54:22 -0400 |
commit | 53dac7451bbdd527aa91e01653b678547624fc39 (patch) | |
tree | c43dbc34fd4ada4249064aab2086ab64b276a460 /cli/config_file.rs | |
parent | 5edcd9dd355483df6b9a8c34ca94f3f54d672b9e (diff) |
chore: remove all `pub(crate)`s from the cli crate (#14083)
Diffstat (limited to 'cli/config_file.rs')
-rw-r--r-- | cli/config_file.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/config_file.rs b/cli/config_file.rs index a2bdbe1d3..156350064 100644 --- a/cli/config_file.rs +++ b/cli/config_file.rs @@ -23,7 +23,7 @@ use std::fmt; use std::path::Path; use std::path::PathBuf; -pub(crate) type MaybeImportsResult = +pub type MaybeImportsResult = Result<Option<Vec<(ModuleSpecifier, Vec<String>)>>, AnyError>; /// The transpile options that are significant out of a user provided tsconfig |