generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
28 lines (27 loc) • 811 B
TypeScript
import type Generator from './generator.js';
export declare const neo4jFiles: {
serverResource: ({
path: string;
renameTo: (data: any, filePath: string) => string;
templates: string[];
condition?: undefined;
} | {
condition: (generator: any) => any;
path: string;
renameTo: (data: any, filePath: string) => string;
templates: string[];
} | {
condition: (generator: any) => any;
path: string;
templates: string[];
renameTo?: undefined;
})[];
serverTestFw: {
path: string;
renameTo: (data: any, filePath: string) => string;
templates: string[];
}[];
};
export default function writeFilesTask(this: Generator, { application }: {
application: any;
}): Promise<void>;