UNPKG

wx-svelte-editor

Version:

Svelte component for creating forms to edit structured data on a page (info cards, text blocks, table rows, etc

8 lines (7 loc) 187 B
const handlers = {}; export function getItemHandler(type) { return handlers[type] || handlers["text"]; } export function registerEditorItem(type, handler) { handlers[type] = handler; }