17 lines
522 B
TypeScript
17 lines
522 B
TypeScript
import React from 'react';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'userEntityGrant', false, {
|
|
url: string;
|
|
expiresAt: number;
|
|
disableDownload: boolean;
|
|
size: number;
|
|
disabled: boolean;
|
|
color: string;
|
|
bgColor: string;
|
|
maskColor: string;
|
|
maskText: string;
|
|
maskTextColor: string;
|
|
mode: 'default' | 'simple';
|
|
}, {}>): React.JSX.Element | null;
|