oak-general-business/es/components/wechatPublicAutoReply/text/web.pc.d.ts

13 lines
526 B
TypeScript

import { EntityDict } from "../../../oak-app-domain";
import { WebComponentProps } from 'oak-frontend-base';
import "@wangeditor/editor/dist/css/style.css";
import { IDomEditor } from '@wangeditor/editor';
export default function Render(props: WebComponentProps<EntityDict, keyof EntityDict, false, {
text: string;
editor: IDomEditor;
getContent: (content: string) => void;
}, {
setEditor: (editor: IDomEditor | null) => void;
setHtml: (html: string) => void;
}>): import("react/jsx-runtime").JSX.Element;