oak-general-business/es/components/parasite/list/web.d.ts

11 lines
403 B
TypeScript

import { WebComponentProps, RowWithActions } from 'oak-frontend-base';
import { EntityDict } from '../../../oak-app-domain';
export default function render(props: WebComponentProps<EntityDict, 'parasite', true, {
searchValue: string;
nameLabel: string;
list: RowWithActions<EntityDict, 'userEntityGrant'>[];
}, {
cancel: () => void;
getQrCode: () => Promise<void>;
}>): JSX.Element;