oak-general-business/lib/pages/user/info/web.pc.d.ts

21 lines
546 B
TypeScript

import { WebComponentProps } from 'oak-frontend-base';
import { EntityDict } from '../../../general-app-domain';
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
visible: boolean;
nickname: string;
name: string;
birth: string;
gender: string;
mobile: string;
avatarUrl: string;
attr: string;
showBack: boolean;
genderOptions: Array<{
label: string;
value: string;
}>;
}, {
updateMyInfo: () => void;
goAddMobile: () => void;
}>): JSX.Element;