@types/office-js 1.0.483 → 1.0.484
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.
- office-js/README.md +1 -1
- office-js/index.d.ts +21 -20
- office-js/package.json +2 -2
office-js/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for office-js (https://github.com/OfficeD
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated: Tue, 25 Mar 2025
|
|
11
|
+
* Last updated: Tue, 25 Mar 2025 21:03:30 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js/index.d.ts
CHANGED
|
@@ -24171,9 +24171,9 @@ declare namespace Excel {
|
|
|
24171
24171
|
/**
|
|
24172
24172
|
* Represents an unknown cell control.
|
|
24173
24173
|
* This represents a control that was added in a future version of Excel, and the current version of Excel doesn't know how to display this control.
|
|
24174
|
-
*
|
|
24174
|
+
*
|
|
24175
24175
|
* @remarks
|
|
24176
|
-
* [Api set: ExcelApi 1.18]
|
|
24176
|
+
* [Api set: ExcelApi 1.18]
|
|
24177
24177
|
*/
|
|
24178
24178
|
interface UnknownCellControl {
|
|
24179
24179
|
type: CellControlType.unknown;
|
|
@@ -24181,9 +24181,9 @@ declare namespace Excel {
|
|
|
24181
24181
|
/**
|
|
24182
24182
|
* Represents an empty cell control.
|
|
24183
24183
|
* This represents the state where a cell does not have a control.
|
|
24184
|
-
*
|
|
24184
|
+
*
|
|
24185
24185
|
* @remarks
|
|
24186
|
-
* [Api set: ExcelApi 1.18]
|
|
24186
|
+
* [Api set: ExcelApi 1.18]
|
|
24187
24187
|
*/
|
|
24188
24188
|
interface EmptyCellControl {
|
|
24189
24189
|
type: CellControlType.empty;
|
|
@@ -24191,28 +24191,28 @@ declare namespace Excel {
|
|
|
24191
24191
|
/**
|
|
24192
24192
|
* Represents the result of a query that resulted in multiple cell controls.
|
|
24193
24193
|
* If the result has multiple controls, then they can't be represented as a single result.
|
|
24194
|
-
*
|
|
24194
|
+
*
|
|
24195
24195
|
* @remarks
|
|
24196
|
-
* [Api set: ExcelApi 1.18]
|
|
24196
|
+
* [Api set: ExcelApi 1.18]
|
|
24197
24197
|
*/
|
|
24198
24198
|
interface MixedCellControl {
|
|
24199
24199
|
type: CellControlType.mixed;
|
|
24200
24200
|
}
|
|
24201
24201
|
/**
|
|
24202
|
-
|
|
24203
|
-
|
|
24204
|
-
|
|
24205
|
-
|
|
24206
|
-
|
|
24202
|
+
* Represents a checkbox. This is a cell control that allows a user to toggle the boolean value in a cell.
|
|
24203
|
+
*
|
|
24204
|
+
* @remarks
|
|
24205
|
+
* [Api set: ExcelApi 1.18]
|
|
24206
|
+
*/
|
|
24207
24207
|
interface CheckboxCellControl {
|
|
24208
24208
|
type: CellControlType.checkbox;
|
|
24209
24209
|
}
|
|
24210
24210
|
/**
|
|
24211
|
-
|
|
24212
|
-
|
|
24213
|
-
|
|
24214
|
-
|
|
24215
|
-
|
|
24211
|
+
* Represents an interactable control inside of a cell.
|
|
24212
|
+
*
|
|
24213
|
+
* @remarks
|
|
24214
|
+
* [Api set: ExcelApi 1.18]
|
|
24215
|
+
*/
|
|
24216
24216
|
type CellControl = UnknownCellControl | EmptyCellControl | MixedCellControl | CheckboxCellControl;
|
|
24217
24217
|
/**
|
|
24218
24218
|
* Represents a 2D array of cell values.
|
|
@@ -37834,24 +37834,24 @@ declare namespace Excel {
|
|
|
37834
37834
|
}
|
|
37835
37835
|
/**
|
|
37836
37836
|
* Represents a sequence of one or more characters that share the same font attributes in a cell. Can be used as the `textRuns` properties of `getCellProperties` or the `textRuns` input parameter of `setCellProperties`.
|
|
37837
|
-
*
|
|
37837
|
+
*
|
|
37838
37838
|
* @remarks
|
|
37839
37839
|
* [Api set: ExcelApi 1.18]
|
|
37840
37840
|
*/
|
|
37841
37841
|
interface RangeTextRun {
|
|
37842
37842
|
/**
|
|
37843
37843
|
* The font attributes (such as font name, font size, and color) applied to this text run.
|
|
37844
|
-
*
|
|
37844
|
+
*
|
|
37845
37845
|
* @remarks
|
|
37846
37846
|
* [Api set: ExcelApi 1.18]
|
|
37847
37847
|
*/
|
|
37848
37848
|
font?: Excel.CellPropertiesFont;
|
|
37849
37849
|
/**
|
|
37850
37850
|
* The text of this text run.
|
|
37851
|
-
*
|
|
37851
|
+
*
|
|
37852
37852
|
* @remarks
|
|
37853
37853
|
* [Api set: ExcelApi 1.18]
|
|
37854
|
-
*/
|
|
37854
|
+
*/
|
|
37855
37855
|
text: string;
|
|
37856
37856
|
}
|
|
37857
37857
|
/**
|
|
@@ -65677,6 +65677,7 @@ declare namespace Excel {
|
|
|
65677
65677
|
pivotTableRangeConflict = "PivotTableRangeConflict",
|
|
65678
65678
|
powerQueryRefreshResourceChallenge = "PowerQueryRefreshResourceChallenge",
|
|
65679
65679
|
rangeExceedsLimit = "RangeExceedsLimit",
|
|
65680
|
+
rangeImageExceedsLimit = "RangeImageExceedsLimit",
|
|
65680
65681
|
refreshWorkbookLinksBlocked = "RefreshWorkbookLinksBlocked",
|
|
65681
65682
|
requestAborted = "RequestAborted",
|
|
65682
65683
|
responsePayloadSizeLimitExceeded = "ResponsePayloadSizeLimitExceeded",
|
office-js/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/office-js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.484",
|
|
4
4
|
"description": "TypeScript definitions for office-js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
48
|
"peerDependencies": {},
|
|
49
|
-
"typesPublisherContentHash": "
|
|
49
|
+
"typesPublisherContentHash": "a4cf3b5472f18698f69d584ccb66ea7d1e2f2790c9bcc3ac1fc333b06a949904",
|
|
50
50
|
"typeScriptVersion": "5.0"
|
|
51
51
|
}
|