IrysUploader: UploaderInterface & {
    fund: ((amount: SolAmount, skipBalanceCheck: boolean) => Promise<void>);
    getBalance: (() => Promise<SolAmount>);
    getUploadPriceFromBytes: ((bytes: number) => Promise<SolAmount>);
    irys: (() => Promise<NodeIrys | WebIrys>);
    withdraw: ((amount: SolAmount) => Promise<void>);
    withdrawAll: ((amount: SolAmount) => Promise<void>);
}

Generated using TypeDoc