UNPKG

hyperformula-dc

Version:

HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas

17 lines (16 loc) 489 B
/** * @license * Copyright (c) 2021 Handsoncode. All rights reserved. */ import { TranslatableErrorType } from '../Cell'; import { TranslationPackage } from '../i18n'; export interface ParserConfig { functionArgSeparator: string; decimalSeparator: '.' | ','; arrayColumnSeparator: ',' | ';'; arrayRowSeparator: ';' | '|'; translationPackage: TranslationPackage; errorMapping: Record<string, TranslatableErrorType>; maxColumns: number; maxRows: number; }