26 lines
799 B
TypeScript
26 lines
799 B
TypeScript
import React from 'react';
|
|
import { WebComponentProps, RowWithActions } from '../../../../types/Page';
|
|
import { EntityDict } from 'oak-domain/lib/base-app-domain';
|
|
export default function render(props: WebComponentProps<EntityDict, 'path', true, {
|
|
path?: RowWithActions<EntityDict, 'path'>;
|
|
isCreate: boolean;
|
|
entities?: string[];
|
|
pathChoice: Array<{
|
|
path: string;
|
|
entity: string;
|
|
}>;
|
|
pathChosen: Array<{
|
|
path: string;
|
|
entity: string;
|
|
}>;
|
|
recursivable: boolean;
|
|
legalSourceEntity: boolean;
|
|
destEntityFixed: boolean;
|
|
}, {
|
|
updateDestEntity: (de: string) => void;
|
|
selectPath: (value: string) => void;
|
|
resetPath: () => void;
|
|
clearDestEntity: () => void;
|
|
confirm: () => void;
|
|
}>): React.JSX.Element | undefined;
|