@cmk/fe_utils
Version:
frontend utility library
8 lines (6 loc) • 427 B
TypeScript
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[];
};