1 2 3 4 5 6
import { BigNumber } from '@0xproject/utils'; export abstract class BalanceAndAllowanceFetcher { public abstract async getBalanceAsync(tokenAddress: string, userAddress: string): Promise<BigNumber>; public abstract async getProxyAllowanceAsync(tokenAddress: string, userAddress: string): Promise<BigNumber>; }