UNPKG

@lingui/cli

Version:

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

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