oak-general-business/lib/components/common/weChatLoginQrCode/index.d.ts

13 lines
268 B
TypeScript

import './index.less';
interface QrCodeProps {
id?: string;
appId: string;
scope: string;
redirectUri: string;
state: string;
style?: string;
href?: string;
}
declare function QrCode(props: QrCodeProps): JSX.Element;
export default QrCode;