@jsfkit/types 1.4.0 → 1.4.1
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/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1813,17 +1813,17 @@ type CalcProps = {
|
|
|
1813
1813
|
* Specifies whether an attempt should be made to calculate formulas that contain circular
|
|
1814
1814
|
* references. Defaults to `false` in Excel.
|
|
1815
1815
|
*/
|
|
1816
|
-
iterate
|
|
1816
|
+
iterate?: boolean;
|
|
1817
1817
|
/**
|
|
1818
1818
|
* The maximum number of calculation iterations, when {@link CalcProps.iterate} is `true`.
|
|
1819
1819
|
* Defaults to `100` in Excel.
|
|
1820
1820
|
*/
|
|
1821
|
-
iterateCount
|
|
1821
|
+
iterateCount?: integer;
|
|
1822
1822
|
/**
|
|
1823
1823
|
* When a calculation iteration results in an absolute change that is less than iterateDelta,
|
|
1824
1824
|
* then no further iterations should be attempted. Defaults to `0.001` in Excel.
|
|
1825
1825
|
*/
|
|
1826
|
-
iterateDelta
|
|
1826
|
+
iterateDelta?: number;
|
|
1827
1827
|
/**
|
|
1828
1828
|
* Which of the two date systems the workbook uses. 1900 is the default.
|
|
1829
1829
|
*
|