10 lines
405 B
TypeScript
10 lines
405 B
TypeScript
import { EntityDict } from '../../../general-app-domain';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'wechatLogin', true, {
|
|
wechatLoginId: string;
|
|
qrCodeUrl: string;
|
|
loading: boolean;
|
|
successed: boolean;
|
|
type: EntityDict['wechatLogin']['Schema']['type'];
|
|
}, {}>): import("react/jsx-runtime").JSX.Element;
|