12 lines
434 B
TypeScript
12 lines
434 B
TypeScript
import * as React from 'react';
|
|
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, 'parasite'>[];
|
|
}, {
|
|
cancel: () => void;
|
|
getQrCode: () => Promise<void>;
|
|
}>): React.JSX.Element;
|