oak-general-business/lib/pages/article/detail/web.d.ts

10 lines
330 B
TypeScript

import { EntityDict } from './../../../general-app-domain';
import { WebComponentProps } from 'oak-frontend-base';
export default function render(props: WebComponentProps<EntityDict, 'article', false, {
title?: string;
author?: string;
abstract?: string;
content?: string;
html?: string;
}, {}>): JSX.Element;