farmfe_core 2.1.0

Core types and data structures for farm.
1
2
3
4
5
6
7
8
use crate::module::Module;

use super::analyze_deps::PluginAnalyzeDepsHookResultEntry;

pub struct PluginFinalizeModuleHookParam<'a> {
  pub module: &'a mut Module,
  pub deps: &'a mut Vec<PluginAnalyzeDepsHookResultEntry>,
}