@lingui/cli
Version:
Lingui CLI to extract messages, compile catalogs, and manage translation workflows
8 lines (7 loc) • 373 B
TypeScript
import Table from "cli-table3";
import { LinguiConfigNormalized } from "@lingui/conf";
import { AllCatalogsType, CatalogType } from "./types.js";
type CatalogStats = [number, number];
export declare function getStats(catalog: CatalogType): CatalogStats;
export declare function printStats(config: LinguiConfigNormalized, catalogs: AllCatalogsType): Table.Table;
export {};