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

15 lines
518 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;
}, {
onMobileChange: (value: string) => Promise<void>;
onConfirm: () => Promise<void>;
onReset: () => void;
}>): JSX.Element;