@buzzr/dfs-engine
    Preparing search index...

    Type Alias DfsRescuePolicy

    DfsRescuePolicy:
        | { type: "none" }
        | { type: "void_entry" }
        | { type: "remove_leg" }
        | {
            resolve: (
                input: {
                    context: DfsSettlementContext;
                    entry: DfsEntryInput;
                    leg: DfsLegInput;
                },
            ) => DfsLegOutcome;
            type: "custom";
        }