@criticalmanufacturing/dev-i18n-transform
Version:
i18n <--> gettext transform
12 lines (11 loc) • 388 B
TypeScript
import { Parser } from "./parser.interface";
export declare class ParserFactory {
/**
* Gets the right analyser for the specified language.
*
* @param packageName Package name
* @param paths File paths to analyse
* @param language Language to analyse
*/
static getParser(packageName: string, paths: string[], language?: string): Parser;
}