@wangeditor-next/editor
Version:
Web rich text editor, Web 富文本编辑器
13 lines (12 loc) • 337 B
TypeScript
/**
* @description insert video
* @author wangfupeng
*/
import { IDomEditor } from '@wangeditor-next/core';
/**
* 插入视频
* @param editor editor
* @param src video src
* @param poster video poster
*/
export default function (editor: IDomEditor, src: string, poster?: string, width?: string, height?: string): Promise<void>;