rucken
Version:
Console tools and scripts for nx and not only that I (EndyKaufman) use to automate the workflow and speed up the development process
14 lines (13 loc) • 365 B
TypeScript
export interface GettextConfig {
gettext: {
locales: string[];
defaultLocale: string;
markers: string[];
gettextExtractorOptions: {
pattern: string;
};
po2jsonOptions: Record<string, unknown>;
resetUnusedTranslates: string;
};
}
export declare const DEFAULT_GETTEXT_CONFIG: GettextConfig;