farming-weight
Version:
Tools for calculating farming weight and fortune in Hypixel Skyblock
12 lines (11 loc) • 381 B
TypeScript
import { type UpgradeCost } from '../../constants/upgrades.js';
import { ComposterUpgrade } from './composter.js';
interface ComposterUpgradeInfo {
name: string;
wiki: string;
current: (level: number) => number;
levels: UpgradeCost[];
totalCost: UpgradeCost;
}
export declare const COMPOSTER_UPGRADES: Record<ComposterUpgrade, ComposterUpgradeInfo>;
export {};