UNPKG

@phqb/mcp-server

Version:

PHQB MCP Payment Server - AI-powered payment processing for Claude and other AI assistants

37 lines 910 B
import { CreateRefundArgs, RefundStatusArgs, RefundHistoryArgs } from '../types'; export declare class RefundTools { private baseURL; private apiKey; constructor(apiKey: string, baseURL?: string); /** * 创建退款 */ createRefund(args: CreateRefundArgs): Promise<{ content: { type: string; text: string; }[]; }>; /** * 查询退款状态 */ getRefundStatus(args: RefundStatusArgs): Promise<{ content: { type: string; text: string; }[]; }>; /** * 获取退款历史 */ getRefundHistory(args: RefundHistoryArgs): Promise<{ content: { type: string; text: string; }[]; }>; private getRefundStatusEmoji; private getRefundStatusDisplay; private getRefundStatusTips; } //# sourceMappingURL=refund.d.ts.map