UNPKG

@melonproject/protocol

Version:

Technology Regulated and Operated Investment Funds

10 lines (9 loc) 434 B
import { QuantityInterface, Address } from '@melonproject/token-math'; import { WithAddressQueryExecute } from '../../../../utils/solidity/withContractAddressQuery'; interface IncreaseApprovalArgs { howMuch: QuantityInterface; spender: Address; } declare type IncreaseApprovalResult = boolean; declare const increaseApproval: WithAddressQueryExecute<IncreaseApprovalArgs, IncreaseApprovalResult>; export { increaseApproval };