UNPKG

@lingui/cli

Version:

Lingui CLI to extract messages, compile catalogs, and manage translation workflows

19 lines (18 loc) 493 B
import { LinguiConfigNormalized } from "@lingui/conf"; import { FormatterWrapper } from "../api/formats/index.js"; export declare function extractFromBundleAndWrite(params: { entryPoint: string; bundleFile: string; linguiConfig: LinguiConfigNormalized; outputPattern: string; format: FormatterWrapper; template: boolean; locales: string[]; clean: boolean; overwrite: boolean; }): Promise<{ success: false; } | { success: true; stat: string; }>;