hyperformula-dc
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
15 lines (14 loc) • 448 B
TypeScript
/**
* @license
* Copyright (c) 2021 Handsoncode. All rights reserved.
*/
import { Config } from './Config';
import { Maybe } from './Maybe';
export declare class NumberLiteralHelper {
private readonly config;
private readonly numberPattern;
private readonly allThousandSeparatorsRegex;
constructor(config: Config);
numericStringToMaybeNumber(input: string): Maybe<number>;
numericStringToNumber(input: string): number;
}