generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
31 lines (30 loc) • 858 B
TypeScript
export declare const clientI18nFiles: {
clientI18nFiles: ({
condition: (ctx: any) => any;
path: string;
renameTo: (context: any) => string;
templates: string[];
from?: undefined;
to?: undefined;
transform?: undefined;
} | {
condition: (context: any) => boolean;
from: (context: any) => string;
to: (context: any) => string;
templates: string[];
path?: undefined;
renameTo?: undefined;
transform?: 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;
})[];
};