type ID = string;
export enum MODULE_TYPE {
QUERY = "QUERY_MODULE",
JS = "JS",
UI = "UI",
}
export interface ModuleInput {
id: string;
propertyName: string;
export interface ModuleInputSection {
children?: ModuleInput[];
export interface Module {
id: ID;
name: string;
packageId: ID;
inputsForm: ModuleInputSection[];