@nemoprotocol/points-sdk
Version:
## Table of Contents
12 lines • 494 B
TypeScript
import { CoinConfig, DebugInfo } from '../../api/types';
interface QueryLpOutParams {
ptValue: string;
syValue: string;
coinConfig: CoinConfig;
suiClient: any;
defaultAddress: string;
}
type QueryReturn<TDebug extends boolean> = TDebug extends true ? [string, DebugInfo] : [string];
export declare function queryLpOut<TDebug extends boolean = false>(params: QueryLpOutParams, debug?: TDebug): Promise<QueryReturn<TDebug>>;
export {};
//# sourceMappingURL=queryLpOut.d.ts.map