0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-08 07:16:56 -05:00

ooof baboof

This commit is contained in:
Benjamin Swerdlow 2025-01-08 23:52:03 -08:00
parent ba4f7b2e7d
commit a686645970

View file

@ -68,7 +68,9 @@ pub fn deno_conditions_from_resolution_mode(
pub struct ConditionsFromResolutionMode { pub struct ConditionsFromResolutionMode {
#[allow(clippy::disallowed_types)] #[allow(clippy::disallowed_types)]
pub func: MaybeArc<dyn Fn(ResolutionMode) -> &'static [&'static str]>, pub func: MaybeArc<
dyn Fn(ResolutionMode) -> &'static [&'static str] + Send + Sync + 'static,
>,
} }
impl Debug for ConditionsFromResolutionMode { impl Debug for ConditionsFromResolutionMode {