UNPKG

generator-jhipster

Version:

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

23 lines (22 loc) 629 B
/** * Extract properties from pom content * @param pomContent */ export declare function getPomProperties(pomContent: string): Record<string, string>; export type MavenPom = { project: { artifactId: string; version: string; properties?: Record<string, string>; }; }; /** * Extract version properties from pom content * @param fileContent */ export declare function parseMavenPom(fileContent: string): MavenPom; /** * Extract version properties from pom content * @param pomContent */ export declare function getPomVersionProperties(pomContent: string | MavenPom): Record<string, string>;