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

14 lines
510 B
TypeScript

import { WebComponentProps } from 'oak-frontend-base';
import { EntityDict } from '../../../general-app-domain';
export default function render(props: WebComponentProps<EntityDict, 'parasite', true, {
searchValue: string;
list: EntityDict['userEntityGrant']['Schema'][];
showBack: boolean;
variant?: 'inline' | 'alone' | 'dialog';
qrCodeUrl: string;
qrCodeExpiresAt: number;
}, {
cancel: () => void;
getQrCode: () => Promise<void>;
}>): import("react/jsx-runtime").JSX.Element;