import { ErrorInterface } from './error.interface'; import { CrossChainTradeType } from '../../providers/cross-chain-trade-type'; import { OnChainTradeType } from '../../providers/on-chain-trade-type'; export interface FailedQuoteInterface { /** * Type of the trade */ providerType: CrossChainTradeType | OnChainTradeType; /** * Error data */ data: ErrorInterface; /** * Inner id */ id: string; }