12 lines
440 B
TypeScript
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;
|