UNPKG

@blinkk/editor

Version:

Structured content editor with live previews.

12 lines (11 loc) 231 B
import { LiveTemplate } from '../template'; export interface UI { render: () => void; template: LiveTemplate; } export declare class BaseUI { /** * Signal for the editor to re-render. */ render(): void; }