@univerjs/engine-formula 0.15.1 → 0.15.2-insiders.20260122-b1556b1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/es/facade.js CHANGED
@@ -124,20 +124,6 @@ let m = class extends C {
124
124
  }
125
125
  /**
126
126
  * @deprecated Use `onCalculationEnd` instead.
127
- * Wait for computing in the Univer instance to complete. Please note that this does not only include formula calculation,
128
- * but also other computing tasks, e.g. pivot table calculation.
129
- * @param {number} [timeout] The maximum time to wait for the computing to complete, in milliseconds. The default
130
- * value is 30,000 milliseconds.
131
- * @returns {Promise<boolean>} This method returns `true` if the computing is complete. If the timeout is reached, this
132
- * method returns `false`.
133
- *
134
- * @example
135
- * ```ts
136
- * const formulaEngine = univerAPI.getFormula();
137
- * formulaEngine.whenComputingCompleteAsync(3000).then((isComplete) => {
138
- * console.log('Computing complete:', isComplete);
139
- * });
140
- * ```
141
127
  */
142
128
  whenComputingCompleteAsync(e) {
143
129
  const t = this._injector.get(b);