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

8 lines
312 B
TypeScript

import { WebComponentProps } from 'oak-frontend-base';
import { EntityDict } from '../../../general-app-domain';
export default function Render(props: WebComponentProps<EntityDict, 'message', true, {
messages: EntityDict['message']['Schema'][];
}, {
goDetailById: (id: string) => void;
}>): JSX.Element;