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

11 lines
362 B
TypeScript

/// <reference types="react" />
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;