oak-general-business/es/components/article/cell/web.d.ts

12 lines
394 B
TypeScript

import React from 'react';
import '@wangeditor/editor/dist/css/style.css';
import { EntityDict } from '../../../oak-app-domain';
import { WebComponentProps } from 'oak-frontend-base';
export default function Render(props: WebComponentProps<EntityDict, 'article', false, {
oakId: string;
content: string;
name: string;
width: string;
editor: any;
}, {}>): React.JSX.Element;