oak-general-business/lib/pages/application/list/web.pc.d.ts

16 lines
622 B
TypeScript

import { EntityDict } from '../../../general-app-domain';
import { WebComponentProps, RowWithActions } from 'oak-frontend-base';
export default function Render(props: WebComponentProps<EntityDict, 'application', true, {
searchValue: string;
list: RowWithActions<EntityDict, 'application'>[];
pagination: any;
showBack: boolean;
variant?: 'inline' | 'alone' | 'dialog';
}, {
goDetail: (id: string) => void;
goCreate: () => void;
goSetConfig: (id: string) => void;
goUpdate: (id: string) => void;
removeApplication: (id: string) => void;
}>): import("react/jsx-runtime").JSX.Element;