oak-general-business/lib/pages/userRelation/upsert/onUser/web.pc.d.ts

18 lines
543 B
TypeScript

import { WebComponentProps } from 'oak-frontend-base';
import { EntityDict } from '../../../../general-app-domain';
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
name: string;
nickname: string;
password: string;
mobileValue: string;
mobileValueReady: boolean;
oakId: string;
relations: string[];
entity: string;
entityId: string;
}, {
onMobileChange: (value: string) => Promise<void>;
onConfirm: () => Promise<void>;
onReset: () => void;
}>): JSX.Element;