Saxonberg Server API
    Preparing search index...

    Type Alias ValidatorPreloads

    ValidatorPreloads: Map<(...args: any[]) => unknown, unknown>

    Resolved preload values keyed by the validator function the dispatcher invoked. Populated by preloadValidatorDeps; consumed by runValidators. Each entry's value matches the corresponding validator's T parameter at runtime; the map's value type is unknown because the map is heterogeneous (each validator may declare its own T).

    The map's lifetime is one command — created at preload time, dropped after runValidators returns. No cross-command state.