UNPKG

gen-jhipster

Version:

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

29 lines (28 loc) 932 B
import type { ApplicationType } from '../../../lib/types/application/application.js'; /** * Load common options to be stored. * @deprecated */ export declare function loadStoredAppOptions(this: any, { options, jhipsterConfig, log }?: { options?: any; jhipsterConfig?: any; log?: any; }): void; /** * Load app configs into application. * all variables should be set to dest, * all variables should be referred from config, * @param {any} config - config to load config from * @param {any} dest - destination context to use default is context */ export declare const loadAppConfig: ({ config, application, useVersionPlaceholders, }: { config: any; application: ApplicationType; useVersionPlaceholders?: boolean; }) => void; /** * @param {Object} dest - destination context to use default is context */ export declare const loadDerivedAppConfig: ({ application }: { application: any; }) => void;