15 lines
610 B
TypeScript
15 lines
610 B
TypeScript
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
import { QrCodeType } from '../../../types/Config';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'relation', true, {
|
|
grantByUserEntityGrant: boolean;
|
|
grantByEmail: boolean;
|
|
grantByMobile: boolean;
|
|
grantMethodCount: number;
|
|
redirectToAfterConfirm: EntityDict['userEntityGrant']['Schema']['redirectTo'];
|
|
entity: keyof EntityDict;
|
|
entityId: string;
|
|
relations: EntityDict['relation']['OpSchema'][];
|
|
qrCodeType?: QrCodeType;
|
|
}, {}>): JSX.Element;
|