oak-general-business/lib/components/message/cell/web.d.ts

15 lines
571 B
TypeScript

import { WebComponentProps } from 'oak-frontend-base';
import { EntityDict } from '../../../general-app-domain';
export default function Render(props: WebComponentProps<EntityDict, 'message', false, {
onItemClicked: (item: {
id: string;
router: EntityDict['message']['Schema']['router'];
}) => void;
$$createAt$$: number;
type: string;
title: string;
router: EntityDict['message']['Schema']['router'];
visitState: EntityDict['message']['Schema']['visitState'];
id: string;
}, {}>): import("react/jsx-runtime").JSX.Element;