oak-frontend-base/es/components/relation/path/list/web.pc.d.ts

12 lines
440 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, {
paths: RowWithActions<EntityDict, 'path'>[];
allowCreate: boolean;
actions: string[];
entity: string;
}, {
onConfirmed: () => Promise<void>;
}>): React.JSX.Element | null;