gen-jhipster
Version:
Spring Boot + Angular/React/Vue in one handy generator
13 lines (12 loc) • 616 B
TypeScript
export type JavaImportType = {
staticImport?: boolean;
};
export declare function addJavaImport(indentifier: string, type?: JavaImportType): (content: string) => string;
export declare function addJavaImport(content: string, identifierOrType: string, type?: JavaImportType): string;
export type JavaAnnotation = {
package?: string;
annotation: string;
parameters?: (oldParameters?: string) => string;
};
export declare function addJavaAnnotation(annotation: JavaAnnotation): (content: string) => string;
export declare function addJavaAnnotation(content: string, annotation: JavaAnnotation): string;