UNPKG

typewriter-editor

Version:

A rich text editor using the Delta format with decorations and rendered with a tiny virtual dom

20 lines (19 loc) 495 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { editor: any; class?: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type RootProps = typeof __propDef.props; export type RootEvents = typeof __propDef.events; export type RootSlots = typeof __propDef.slots; export default class Root extends SvelteComponentTyped<RootProps, RootEvents, RootSlots> { } export {};