UNPKG

edix

Version:

An experimental, framework agnostic, small (~3kB) contenteditable state manager.

8 lines (7 loc) 194 B
import type { EditableSchema } from "./types"; /** * Defines plain text schema. */ export declare const plainSchema: ({ multiline, }?: { multiline?: boolean; }) => EditableSchema<string>;