@blinkk/editor
Version:
Structured content editor with live previews.
17 lines (16 loc) • 536 B
TypeScript
import { BasePart, Part } from '.';
import { TemplateResult } from '@blinkk/selective-edit';
import { EditorState } from '../state';
import { LiveEditor } from '../editor';
export interface EmptyPartConfig {
/**
* State class for working with editor state.
*/
state: EditorState;
}
export declare class EmptyPart extends BasePart implements Part {
config: EmptyPartConfig;
constructor(config: EmptyPartConfig);
classesForPart(): Record<string, boolean>;
template(editor: LiveEditor): TemplateResult;
}