UNPKG

xliff-generator

Version:

A simple module to create xliff files

14 lines (13 loc) 579 B
import { ICreateFromCsvConfig } from './models'; /** * Read in the csv file, parse it and create the xliff files. * @param config {ICreateFromCsvConfig} the configuration instance */ export declare function createFromCsvSync(config: ICreateFromCsvConfig): void; /** * Read in the csv file, parse it and create the xliff files. * @param config {ICreateFromCsvConfig} the configuration instance * @return {Promise<void>} Promise with the result */ export declare function createFromCsv(config: ICreateFromCsvConfig): Promise<void>; export * from './models/language-option';