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

13 lines
398 B
TypeScript

/// <reference types="react" />
import { WebComponentProps } from 'oak-frontend-base';
import { EntityDict } from '../../../general-app-domain';
export default function Render(props: WebComponentProps<EntityDict, 'article', false, {
editor: any;
title?: string;
author?: string;
abstract?: string;
content?: string;
html?: string;
origin?: string;
}, {}>): JSX.Element;