@univerjs/sheets-formula
Version:
| Package Name | UMD Namespace | Version | License | Downloads | Contains CSS | Contains i18n locales | | --- | --- | --- | --- | --- | :---: | :---: | | `@univerjs/sheets-formula` | `UniverSheetsFormula` | [![][npm-version-shield]][npm-version-link] | ![
18 lines (17 loc) • 463 B
TypeScript
import { CalculationMode } from '@univerjs/sheets-formula';
/**
* @ignore
*/
export interface IFSheetsFormulaEnum {
/**
* Define the calculation mode during initialization
*/
CalculationMode: typeof CalculationMode;
}
export declare class FSheetsFormulaEnum implements IFSheetsFormulaEnum {
get CalculationMode(): typeof CalculationMode;
}
declare module '@univerjs/core/facade' {
interface FEnum extends IFSheetsFormulaEnum {
}
}