gen-jhipster
Version:
VHipster - Spring Boot + Angular/React/Vue in one handy generator
20 lines (19 loc) • 681 B
TypeScript
export type DockerAddedApplicationLoadingProperties = {
dockerContainers: Record<string, string>;
dockerApplicationEnvironment: Record<string, string>;
dockerServices: string[];
keycloakSecrets?: string[];
};
export type DockerAddedApplicationPreparingProperties = {
dockerServicesDir: string;
};
export declare const mutateApplicationLoading: {
readonly __override__: false;
readonly dockerContainers: () => {};
readonly dockerApplicationEnvironment: () => {};
readonly dockerServices: () => never[];
};
export declare const mutateApplicationPreparing: {
readonly __override__: false;
readonly dockerServicesDir: "src/main/docker/";
};