xliff-generator
Version:
A simple module to create xliff files
19 lines (18 loc) • 893 B
TypeScript
import { LanguageOption } from './language-option';
export declare class CreateFromCsvConfig {
static readonly CSV_DELIMITER_DEFAULT_VALUE: string;
static readonly CSV_ESCAPE_DEFAULT_VALUE: string;
static readonly CSV_QUOTE_DEFAULT_VALUE: string;
static readonly CSV_COMMENT_DEFAULT_VALUE: string;
static readonly PRINT_PRETTY_DEFAULT_VALUE: boolean;
productName: string;
csvFile: string;
languageOptions: LanguageOption[];
csvDelimiter: string;
csvComment: string;
csvEscape: string;
csvQuote: string;
printPretty: boolean;
constructor(productName: string, csvFile: string, options: LanguageOption[], printPretty?: boolean | null | undefined, csvDelimiter?: string | null | undefined, csvComment?: string | null | undefined, csvEscape?: string | null | undefined, csvQuote?: string | null | undefined);
private isNullOrUndefined;
}