/** * Flowtype definitions for app * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 */ import { BalanceQuantity } from "../balance/token"; import { SwapAggregator } from "../swap/aggregator"; export interface AppApi { getFrontendFees(): Promise; } export type AppFrontendFeesResponse = $ReadOnly< $ObjMapi< { [k: SwapAggregator]: any }, (aggregator) => $ReadOnlyArray > >; export type AppFrontendFeeTier = $ReadOnly<{ primaryTokenValueThreshold: BalanceQuantity, secondaryTokenBalanceThreshold: BalanceQuantity, variableFeeMultiplier: number, fixedFee: BalanceQuantity, ... }>;