gen-jhipster
Version:
Spring Boot + Angular/React/Vue in one handy generator
39 lines (38 loc) • 1.07 kB
TypeScript
export declare const clientI18nFiles: {
clientI18nFiles: ({
from: (context: any) => string;
to: (context: any) => string;
transform: boolean;
templates: string[];
condition?: undefined;
path?: undefined;
renameTo?: undefined;
} | {
condition: (ctx: any) => any;
path: string;
renameTo: (context: any) => string;
templates: string[];
from?: undefined;
to?: undefined;
transform?: undefined;
} | {
from: (context: any) => string;
to: (context: any) => string;
templates: string[];
transform?: undefined;
condition?: undefined;
path?: undefined;
renameTo?: undefined;
} | {
condition: (context: any) => any;
from: (context: any) => string;
to: (context: any) => string;
transform: boolean;
templates: (string | {
transform: boolean;
file: string;
})[];
path?: undefined;
renameTo?: undefined;
})[];
};