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

    Type Alias DfsPayoutSplitStrategy

    DfsPayoutSplitStrategy:
        | { type: "all_withdrawable" }
        | { type: "underdog_bonus_split" }
        | {
            split: (
                input: {
                    baseMultiplier?: number | null;
                    multiplier: number;
                    profitBoostPct?: number | null;
                    stake: number;
                    totalPayout: number;
                },
            ) => DfsPayoutSplit;
            type: "custom";
        }