/** * @module plugins/representative-setting */ import { HTMLTagNames } from 'jodit/types'; import { Config } from 'jodit/config'; declare module 'jodit/config' { interface Config { /** * represent elements */ allowRepresentTags: HTMLTagNames[]; } } Config.prototype.allowRepresentTags = ['img', 'video', 'jodit-collage-item'];