@f5i23q999d/cow-sdk
Version:
<p align="center"> <img width="400" src="https://github.com/cowprotocol/cow-sdk/raw/main/docs/images/CoW.png" /> </p>
7 lines (6 loc) • 553 B
TypeScript
import { QuoteAndPost } from '../trading/index.js';
import { BridgeQuoteAndPost, CrossChainQuoteAndPost } from './types.js';
export declare function isBridgeQuoteAndPost(quote: CrossChainQuoteAndPost): quote is BridgeQuoteAndPost;
export declare function isQuoteAndPost(quote: CrossChainQuoteAndPost): quote is QuoteAndPost;
export declare function assertIsBridgeQuoteAndPost(quote: CrossChainQuoteAndPost): asserts quote is BridgeQuoteAndPost;
export declare function assertIsQuoteAndPost(quote: CrossChainQuoteAndPost): asserts quote is QuoteAndPost;