UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

11 lines (10 loc) 413 B
import { Config, PreviewUpdate } from 'alinea/core'; import { EntryEditor } from '../../atoms/EntryEditorAtoms.js'; export interface EntryPreviewProps { editor: EntryEditor; preview: Config['preview']; } export interface LivePreview { preview(update: PreviewUpdate): void; } export declare function EntryPreview({ editor, preview }: EntryPreviewProps): import("react/jsx-runtime").JSX.Element | null;