10 lines
353 B
TypeScript
10 lines
353 B
TypeScript
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'userEntityGrant', true, {
|
|
showBack: boolean;
|
|
variant: 'alone' | 'inline' | 'dialog';
|
|
url: string;
|
|
expiresAt: number;
|
|
title?: string;
|
|
}, {}>): JSX.Element;
|