oak-general-business/lib/components/userRelation/upsert/byMobile/web.pc.d.ts

17 lines
558 B
TypeScript

import { WebComponentProps } from 'oak-frontend-base';
import { EntityDict } from '../../../../oak-app-domain';
export default function Render(props: WebComponentProps<EntityDict, 'mobile', false, {
entity: keyof EntityDict;
entityId: string;
relations: EntityDict['relation']['OpSchema'][];
mobileValue: string;
mobileValueReady: boolean;
userId: string;
legal: boolean;
isNew: boolean;
}, {
onMobileChange: (value: string) => Promise<void>;
onConfirm: () => Promise<void>;
onReset: () => void;
}>): JSX.Element;