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