UNPKG

@cmk/fe_utils

Version:
8 lines (6 loc) 427 B
import { EditorSetting, EditorStateType } from '../../types'; import { EditorStateDbDataType } from './editorDbStateType'; import { ElementModel } from '../../editorComponents'; export declare const deserializeEditorState: (data: EditorStateDbDataType, currentEditorState: EditorStateType | undefined, componentsIn: ElementModel[], disableThemeReload?: boolean) => EditorStateType & { editor_settings: EditorSetting[]; };