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

    Type Alias DfsPushPolicy

    DfsPushPolicy:
        | { refundIfNoSurvivors?: boolean; type: "remove_leg" }
        | { type: "loss" }
        | { reasonCode?: string; type: "manual" }
        | {
            resolve: (
                input: {
                    context: DfsSettlementContext;
                    entry: DfsEntryInput;
                    leg: DfsLegInput;
                },
            ) => DfsLegOutcome;
            type: "custom";
        }