12 lines
420 B
TypeScript
12 lines
420 B
TypeScript
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../general-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'userEntityGrant', true, {
|
|
showBack: boolean;
|
|
variant: 'alone' | 'inline' | 'dialog';
|
|
url: string;
|
|
expiresAt: number;
|
|
title?: string;
|
|
}, {
|
|
copy: (text: string) => void;
|
|
}>): import("react/jsx-runtime").JSX.Element;
|