12 lines
405 B
TypeScript
12 lines
405 B
TypeScript
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../../oak-app-domain';
|
|
export default function Render(props: WebComponentProps<EntityDict, 'user', false, {
|
|
relations: EntityDict['relation']['OpSchema'][];
|
|
entity: keyof EntityDict;
|
|
entityId: string;
|
|
oakId: string;
|
|
}, {
|
|
onConfirm: () => Promise<void>;
|
|
onReset: () => void;
|
|
}>): JSX.Element;
|