8 lines
294 B
TypeScript
8 lines
294 B
TypeScript
import { EntityDict } from '../../../oak-app-domain';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'wechatUser', false, {
|
|
wechatLoginId: string;
|
|
qrCodeUrl: string;
|
|
loading: boolean;
|
|
}, {}>): JSX.Element;
|