#[derive(ts_rs::TS, serde::Serialize)]
#[ts(export)]
pub struct HookTransformCallStart {
#[ts(type = "'HookTransformCallStart'")]
pub action: &'static str,
pub module_id: String,
pub source: String,
pub plugin_name: String,
/// The index of the plugin in the plugin list. It's unique to each plugin.
pub plugin_index: u32,
pub call_id: String,
}