mcp-invest-assistant
Version:
7 lines (6 loc) • 350 B
TypeScript
import { FundFlowInformation, FundFlowResponseBody } from '../types/index.js';
/**
* 获取公司资金流向数据(互联互通或融资融券)
*/
declare const getCompanyFundFlow: ({ stockCode, market, startDate, endDate, fundFlowType, limit, token }: FundFlowInformation) => Promise<FundFlowResponseBody>;
export default getCompanyFundFlow;