@syncfusion/ej2-spreadsheet
Version:
Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel
40 lines (39 loc) • 748 B
TypeScript
/**
* Interface for calculate failure event arguments.
*/
export interface FailureEventArgs {
message: string;
exception: Object;
isForceCalculable: boolean;
computeForceCalculate?: boolean;
}
/**
* @hidden
*/
export interface IFormulaColl {
handler: Function;
isCustom?: boolean;
category?: string;
description?: string;
}
/**
* @hidden
*/
export interface StoredCellInfo {
cellValue: string | string[];
cellRange: string[];
criteria: string[];
argArray: string[];
isCriteria: string;
storedCells: string[];
isCountIfS: string;
countVal?: number;
}
/**
* @hidden
*/
export interface IBasicFormula {
formulaName: string;
category?: string;
description?: string;
}