11 lines
429 B
TypeScript
11 lines
429 B
TypeScript
/// <reference types="react" />
|
|
import { EntityDict } from '../../../general-app-domain';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
export default function render(props: WebComponentProps<EntityDict, 'userEntityGrant', true, {
|
|
searchValue: string;
|
|
list: EntityDict['userEntityGrant']['Schema'][];
|
|
pagination: any;
|
|
showBack: boolean;
|
|
variant?: 'inline' | 'alone' | 'dialog';
|
|
}, {}>): JSX.Element;
|