UNPKG

@syncfusion/ej2-spreadsheet

Version:

Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel

38 lines (37 loc) 1.05 kB
import { Calculate } from '../base'; /** * Represent the common codes for calculate */ export declare class CalculateCommon { private parent; constructor(parent: Calculate); /** * For internal use only - Get the module name. * * @private * @returns {string} - Get the module name. */ protected getModuleName(): string; } /** * To check whether the object is undefined. * * @param {Object} value - To check the object is undefined * @returns {boolean} - Returns boolean value. * @private */ export declare function isUndefined(value: Object): boolean; /** * @hidden * @param {string} value - specify the value * @returns {string} - get Skeleton Value. */ export declare function getSkeletonVal(value: string): string; /** * To check whether the formula contains external file link. * * @param {string} formula - To check the string contains external file link. * @returns {boolean} - Returns boolean value. * @private */ export declare function isExternalFileLink(formula: string): boolean;