11 lines
326 B
TypeScript
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;
|