// Copyright 2018-2025 the Deno authors. MIT license. mod cache_db; mod caches; mod check; mod code_cache; mod fast_check; mod incremental; mod module_info; mod node; pub type DenoDir = deno_resolver::cache::DenoDir; pub type DenoDirProvider = deno_resolver::cache::DenoDirProvider; pub use cache_db::CacheDBHash; pub use caches::Caches; pub use check::TypeCheckCache; pub use code_cache::CodeCache; /// Permissions used to save a file in the disk caches. pub use deno_cache_dir::CACHE_PERM; pub use fast_check::FastCheckCache; pub use incremental::IncrementalCache; pub use module_info::ModuleInfoCache; pub use node::SqliteNodeAnalysisCache; use crate::sys::CliSys; pub type GlobalHttpCache = deno_cache_dir::GlobalHttpCache; pub type LocalLspHttpCache = deno_cache_dir::LocalLspHttpCache; pub use deno_cache_dir::HttpCache;