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

19 lines
573 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: keyof EntityDict;
entityId: string;
isNew: boolean;
}, {
onMobileChange: (value: string) => Promise<void>;
onConfirm: () => Promise<void>;
onReset: () => void;
}>): JSX.Element;