typewriter-editor
Version:
A rich text editor using the Delta format with decorations and rendered with a tiny virtual dom
10 lines (9 loc) • 408 B
JavaScript
import { decorations } from './decorations';
import { rendering } from './rendering';
import { keyboard } from './keyboard';
import { input } from './input';
import { selection } from './selection';
import { paste } from './paste';
import { copy } from './copy';
import { history } from './history';
export const defaultModules = { keyboard, input, copy, paste, history, decorations, rendering, selection };