Type Alias WithdrawalOptions
WithdrawalOptions: { amount: number | bigint | string; type?: string | null } & (
| { allowance?: never; from?: "sender"; funder?: never }
| { allowance?: never; from: "sponsor"; funder?: never }
| { allowance: string; from: "allowance"; funder: string }
)