scum-quest-library
Version:
S.C.U.M. Quest Library
10 lines • 411 B
TypeScript
import { Skill } from '../../schemas';
import type { Reward, TradeDeal } from '../../types';
export declare class RewardBuilder {
private reward;
currency(normal?: number, gold?: number, fame?: number): this;
addSkill(skill: Skill, experience: number): this;
addTradeDeal(item: string, options?: Partial<Omit<TradeDeal, 'Item'>>): this;
build(): Reward;
}
//# sourceMappingURL=index.d.ts.map