21 lines
546 B
TypeScript
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;
|