UNPKG

generator-jhipster

Version:

Spring Boot + Angular/React/Vue in one handy generator

9 lines (8 loc) 778 B
import type { ApplicationConfiguration, YoRcContent } from '../types/application/yo-rc.js'; import type { Entity } from '../types/base/entity.js'; export declare const YO_RC_CONFIG_KEY = "generator-jhipster"; export declare const YO_RC_FILE = ".yo-rc.json"; export declare const mergeYoRcContent: <const Content = ApplicationConfiguration>(oldConfig: YoRcContent<Content>, newConfig: YoRcContent<Content>) => YoRcContent<Content>; export declare const readEntityFile: <Content = Entity>(applicationPath: string, entity: string) => Content; export declare const readYoRcFile: <Content = ApplicationConfiguration>(yoRcPath?: string) => YoRcContent<Content>; export declare const readCurrentPathYoRcFile: <Content = ApplicationConfiguration>() => YoRcContent<Content> | undefined;