oak-pay-business/es/components/payConfig/upsert/wechatPay/index.d.ts

11 lines
326 B
TypeScript

import { WechatPayConfig } from '../../../../types/PayConfig';
import React from 'react';
export default function WechatPay(props: {
config: WechatPayConfig;
update: (config: Omit<WechatPayConfig, 'channel'>) => void;
t: (k: string) => string;
extra: {
serverUrl: string;
};
}): React.JSX.Element;