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

15 lines
484 B
TypeScript

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