UNPKG

@lingui/cli

Version:

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

8 lines (7 loc) 282 B
import { ExtractedMessage } from "@lingui/conf"; export type ExtractWorkerFunction = typeof extractWorker; declare const extractWorker: (linguiConfigPath: string, bundleFile: string) => Promise<{ success: boolean; messages: ExtractedMessage[]; }>; export { extractWorker };