@blinkk/selective-edit
Version:
Selective structured text editor.
12 lines (11 loc) • 553 B
TypeScript
import { Field, FieldConfig } from '../field';
import { GlobalConfig, SelectiveEditor } from '../editor';
import { TemplateResult } from 'lit-html';
import { DeepObject } from '../../utility/deepObject';
import { Types } from '../types';
export declare type ColorFieldConfig = FieldConfig;
export declare class ColorField extends Field {
config: ColorFieldConfig;
constructor(types: Types, config: ColorFieldConfig, globalConfig: GlobalConfig, fieldType?: string);
templateInput(editor: SelectiveEditor, data: DeepObject): TemplateResult;
}