UNPKG

substance

Version:

Substance is a JavaScript library for web-based content editing. It provides building blocks for realizing custom text editors and web-based publishing systems.

10 lines (7 loc) 272 B
import { DefaultFileProxy } from '../../model' class ImageProxy extends DefaultFileProxy {} // to detect that this class should take responsibility for a fileNode ImageProxy.match = function(fileNode) { return fileNode.fileType === 'image' } export default ImageProxy