13 lines
441 B
TypeScript
13 lines
441 B
TypeScript
/// <reference types="react" />
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../general-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
|
grantByUserEntityGrant: boolean;
|
|
grantByEmail: boolean;
|
|
grantByMobile: boolean;
|
|
grantMethodCount: number;
|
|
entity: string;
|
|
entityId: string;
|
|
relations: string[];
|
|
}, {}>): JSX.Element;
|