@lingui/cli
Version:
Lingui CLI to extract messages, compile catalogs, and manage translation workflows
9 lines (8 loc) • 357 B
TypeScript
export type ExtractWorkerFunction = typeof extractWorker;
declare const extractWorker: (linguiConfigPath: string, entryPoint: string, bundleFile: string, outputPattern: string, template: boolean, locales: string[], clean: boolean, overwrite: boolean) => Promise<{
success: false;
} | {
success: true;
stat: string;
}>;
export { extractWorker };