@cmk/fe_utils
Version:
frontend utility library
15 lines (13 loc) • 529 B
TypeScript
import { ElementModel } from '../../../editorComponents/index';
import { Element, Property, Template } from '../../../types/index';
export declare const deserializeProperties: (properties: Property[], elements: Element[], ELEMENT_MODELS: ElementModel[], templates: Template[]) => {
prop_value: any;
element_id: string | null;
template_id: string | null;
prop_name: string;
project_id: string;
prop_id: string;
component_id: string | null;
action_ids?: string[];
viewport: string | null;
}[];