hyperformula-dc
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
9 lines (8 loc) • 337 B
TypeScript
/**
* @license
* Copyright (c) 2021 Handsoncode. All rights reserved.
*/
import { DateTime } from './DateTimeHelper';
import { Maybe } from './Maybe';
export declare function defaultParseToDateTime(dateTimeString: string, dateFormat?: string, timeFormat?: string): Maybe<DateTime>;
export declare const secondsExtendedRegexp: RegExp;