UNPKG

@blinkk/editor

Version:

Structured content editor with live previews.

13 lines (12 loc) 494 B
import { ContentSectionPart, ContentSectionPartConfig } from './section'; import { DeepObject, TemplateResult } from '@blinkk/selective-edit'; import { LiveEditor } from '../../editor'; export declare class RawPart extends ContentSectionPart { data: DeepObject; constructor(config: ContentSectionPartConfig); handleAction(evt: Event): void; get label(): string; loadEditorConfig(): void; get section(): string; templateContent(editor: LiveEditor): TemplateResult; }