UNPKG

@hufe921/canvas-editor

Version:
22 lines (21 loc) 1.27 kB
import { ElementType } from '../enum/Element'; import { IElement } from '../../interface/Element'; import { ITd } from '../../interface/table/Td'; import { IControlStyle } from '../../interface/Control'; export declare const EDITOR_ELEMENT_STYLE_ATTR: Array<keyof IElement>; export declare const EDITOR_ROW_ATTR: Array<keyof IElement>; export declare const EDITOR_ELEMENT_COPY_ATTR: Array<keyof IElement>; export declare const EDITOR_ELEMENT_ZIP_ATTR: Array<keyof IElement>; export declare const TABLE_TD_ZIP_ATTR: Array<keyof ITd>; export declare const TABLE_CONTEXT_ATTR: Array<keyof IElement>; export declare const TITLE_CONTEXT_ATTR: Array<keyof IElement>; export declare const LIST_CONTEXT_ATTR: Array<keyof IElement>; export declare const CONTROL_CONTEXT_ATTR: Array<keyof IElement>; export declare const CONTROL_STYLE_ATTR: Array<keyof IControlStyle>; export declare const AREA_CONTEXT_ATTR: Array<keyof IElement>; export declare const EDITOR_ELEMENT_CONTEXT_ATTR: Array<keyof IElement>; export declare const TEXTLIKE_ELEMENT_TYPE: ElementType[]; export declare const IMAGE_ELEMENT_TYPE: ElementType[]; export declare const BLOCK_ELEMENT_TYPE: ElementType[]; export declare const INLINE_NODE_NAME: string[]; export declare const VIRTUAL_ELEMENT_TYPE: ElementType[];