12 lines
476 B
TypeScript
12 lines
476 B
TypeScript
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../../../oak-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
|
entity: string;
|
|
relations2: {
|
|
relation: EntityDict['relation']['OpSchema'];
|
|
isChecked: boolean;
|
|
}[];
|
|
}, {
|
|
onRelationChange: (relation: EntityDict['relation']['OpSchema'], checked: boolean) => void;
|
|
}>): import("react/jsx-runtime").JSX.Element;
|