BundlrUploader: UploaderInterface & {
    bundlr: (() => Promise<NodeBundlr | WebBundlr>);
    fund: ((amount: SolAmount, skipBalanceCheck: boolean) => Promise<void>);
    getBalance: (() => Promise<SolAmount>);
    getUploadPriceFromBytes: ((bytes: number) => Promise<SolAmount>);
    withdraw: ((amount: SolAmount) => Promise<void>);
    withdrawAll: ((amount: SolAmount) => Promise<void>);
}

Generated using TypeDoc