/** * @file generate for component: Markdown * @link file://./API.md * @link file://./README.md */ import san from 'san'; import {__SLS_InitDataType} from './interface'; /** * Markdown 组件 * @doc [官网](baidu.github.io/cosui/components/cosmic-dqa/markdown) */ export default class Markdown extends san.Component { static props: { content: __SLS_InitDataType['content']; normalizeContent: __SLS_InitDataType['normalizeContent']; typing: __SLS_InitDataType['typing']; config: __SLS_InitDataType['config']; table: __SLS_InitDataType['table']; autolink: __SLS_InitDataType['autolink']; }; static events: { "typing-start": undefined; "typing-finished": undefined; "render-complete": undefined; "click": undefined; }; static messages: { }; }