UNPKG

@blinkk/editor

Version:

Structured content editor with live previews.

16 lines (15 loc) 600 B
import { BasePart, Part } from '..'; import { TemplateResult } from '@blinkk/selective-edit'; import { ContentSettings } from '../content'; import { DataStorage } from '../../../utility/dataStorage'; import { LiveEditor } from '../../editor'; export interface ContentFooterConfig { contentSettings: ContentSettings; storage: DataStorage; } export declare class ContentFooterPart extends BasePart implements Part { config: ContentFooterConfig; constructor(config: ContentFooterConfig); classesForPart(): Record<string, boolean>; template(editor: LiveEditor): TemplateResult; }