UNPKG

wx-svelte-editor

Version:

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

10 lines (9 loc) 228 B
const handlers = {}; export function getItemHandler(type) { return typeof type !== "undefined" ? handlers[type] || type : handlers["text"]; } export function registerEditorItem(type, handler) { handlers[type] = handler; }