gen-jhipster
Version:
Spring Boot + Angular/React/Vue in one handy generator
66 lines (65 loc) • 1.54 kB
TypeScript
export declare const addEntityFiles: {
dbChangelog: ({
path: string;
templates: {
file: string;
renameTo: (generator: any) => string;
}[];
condition?: undefined;
} | {
condition: (generator: any) => any;
path: string;
templates: {
file: string;
renameTo: (generator: any) => string;
}[];
})[];
};
export declare const updateEntityFiles: {
dbChangelog: {
path: string;
templates: {
file: string;
renameTo: (generator: any) => string;
}[];
}[];
};
export declare const updateConstraintsFiles: {
dbChangelog: {
path: string;
templates: {
file: string;
renameTo: (generator: any) => string;
}[];
}[];
};
export declare const updateMigrateFiles: {
dbChangelog: {
path: string;
templates: {
file: string;
renameTo: (generator: any) => string;
}[];
}[];
};
export declare const fakeFiles: {
fakeData: ({
path: string;
templates: {
file: string;
renameTo: (generator: any) => string;
}[];
condition?: undefined;
} | {
condition: (generator: any) => any;
path: string;
templates: {
file: string;
noEjs: boolean;
}[];
} | {
condition: (generator: any) => any;
path: string;
templates: string[];
})[];
};