oak-general-business/lib/components/my/info/web.d.ts

17 lines
539 B
TypeScript

import { WebComponentProps } from 'oak-frontend-base';
import { EntityDict } from '../../../oak-app-domain';
export default function Render(props: WebComponentProps<EntityDict, 'token', false, {
nameText?: string;
mobileText?: string;
userId?: string;
gender: string;
nickname?: string;
name?: string;
idState?: string;
userState?: string;
showLogout?: boolean;
}, {
logout: () => void;
updateAttribute: (attr: string, value: any) => Promise<void>;
}>): import("react/jsx-runtime").JSX.Element;