[ty] Remove KnownModule::is_enum (#19681)

## Summary

Changes the visibility of `KnownModule` and removes an unneeded
function.
This commit is contained in:
David Peter 2025-08-01 10:31:12 +02:00 committed by GitHub
parent b30d97e5e0
commit d43e6fb9c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 20 additions and 22 deletions

View file

@ -1,6 +1,7 @@
use std::iter::FusedIterator;
pub use module::{KnownModule, Module};
pub(crate) use module::KnownModule;
pub use module::Module;
pub use path::SearchPathValidationError;
pub use resolver::SearchPaths;
pub(crate) use resolver::file_to_module;