generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
10 lines (9 loc) • 649 B
TypeScript
import JDLObject from '../core/models/jdl-object.js';
import type { JDLRuntime } from '../core/types/runtime.js';
import type { JHipsterYoRcContent, JHipsterYoRcContentWrapper } from '../core/types/json-config.js';
export type JHipsterYoRcContentAndJDLWrapper = {
applications?: JHipsterYoRcContent[];
jdl?: JDLObject;
};
export declare function convertApplicationsToJDL({ applications, jdl }: JHipsterYoRcContentAndJDLWrapper, runtime: JDLRuntime): JDLObject;
export declare function convertApplicationToJDL({ application }: JHipsterYoRcContentWrapper | undefined, runtime: JDLRuntime): import("../core/models/jdl-application.js").default;