aia-kit
Version:
Read, Parse, Edit, Write, Analyze AIA/AIX/AIS files.
17 lines (16 loc) • 518 B
TypeScript
import type { ComponentJson, ExtensionDescriptorProperty } from "./types.js";
/**
* A function that maps two JSON arrays.
*
*
* @file This file defines the property_processor web worker used in
* ai_project::Component::loadProperties.
* @author vishwas@kodular.io (Vishwas Adiga)
* @since 1.0.0
* @license
*/
export declare function process_properties(propertyJSON: ComponentJson, descriptorJSON: ExtensionDescriptorProperty[]): {
name: string;
value: string;
editorType?: string;
}[];