@types/office-js 1.0.394 → 1.0.396
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 +162 -16
- 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:
|
|
11
|
+
* Last updated: Thu, 20 Jun 2024 16:08:33 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js/index.d.ts
CHANGED
|
@@ -3072,6 +3072,30 @@ declare namespace Office {
|
|
|
3072
3072
|
*/
|
|
3073
3073
|
Headers
|
|
3074
3074
|
}
|
|
3075
|
+
/**
|
|
3076
|
+
* Specifies the Office theme that's currently selected.
|
|
3077
|
+
*
|
|
3078
|
+
* For information on Office themes, see
|
|
3079
|
+
* {@link https://support.microsoft.com/office/63e65e1c-08d4-4dea-820e-335f54672310 | Change the look and feel of Microsoft 365}.
|
|
3080
|
+
*/
|
|
3081
|
+
enum ThemeId {
|
|
3082
|
+
/**
|
|
3083
|
+
* The currently selected Office theme is **Black**.
|
|
3084
|
+
*/
|
|
3085
|
+
Black,
|
|
3086
|
+
/**
|
|
3087
|
+
* The currently selected Office theme is **Colorful**.
|
|
3088
|
+
*/
|
|
3089
|
+
Colorful,
|
|
3090
|
+
/**
|
|
3091
|
+
* The currently selected Office theme is **Dark Gray**.
|
|
3092
|
+
*/
|
|
3093
|
+
DarkGray,
|
|
3094
|
+
/**
|
|
3095
|
+
* The currently selected Office theme is **White**.
|
|
3096
|
+
*/
|
|
3097
|
+
White
|
|
3098
|
+
}
|
|
3075
3099
|
/**
|
|
3076
3100
|
* Specifies whether values, such as numbers and dates, returned by the invoked method are returned with their formatting applied.
|
|
3077
3101
|
*
|
|
@@ -6979,10 +7003,14 @@ declare namespace Office {
|
|
|
6979
7003
|
/**
|
|
6980
7004
|
* Provides access to the properties for Office theme colors.
|
|
6981
7005
|
*
|
|
6982
|
-
* Using Office theme colors lets you coordinate the color scheme of your add-in with the current Office theme selected by the user
|
|
6983
|
-
*
|
|
7006
|
+
* Using Office theme colors lets you coordinate the color scheme of your add-in with the current Office theme selected by the user.
|
|
7007
|
+
* The user sets a theme in an Office application through **File** \> **Account** or **Office Account** \> **Office Theme**.
|
|
7008
|
+
* The selected theme is then applied across all Office applications. Using Office theme colors is appropriate for mail and
|
|
6984
7009
|
* task pane add-ins.
|
|
6985
7010
|
*
|
|
7011
|
+
* For more information on Office themes, see
|
|
7012
|
+
* {@link https://support.microsoft.com/office/63e65e1c-08d4-4dea-820e-335f54672310 | Change the look and feel of Microsoft 365}.
|
|
7013
|
+
*
|
|
6986
7014
|
* @remarks
|
|
6987
7015
|
*
|
|
6988
7016
|
* *Supported applications, by platform*
|
|
@@ -6997,7 +7025,7 @@ declare namespace Office {
|
|
|
6997
7025
|
* </tr>
|
|
6998
7026
|
* <tr>
|
|
6999
7027
|
* <td><strong>Excel</strong></td>
|
|
7000
|
-
* <td>
|
|
7028
|
+
* <td>Supported</td>
|
|
7001
7029
|
* <td>Supported</td>
|
|
7002
7030
|
* <td>Supported</td>
|
|
7003
7031
|
* <td>Supported</td>
|
|
@@ -7005,15 +7033,15 @@ declare namespace Office {
|
|
|
7005
7033
|
* </tr>
|
|
7006
7034
|
* <tr>
|
|
7007
7035
|
* <td><strong>Outlook</strong></td>
|
|
7008
|
-
* <td>Supported
|
|
7009
|
-
* <td>Supported
|
|
7036
|
+
* <td>Supported</td>
|
|
7037
|
+
* <td>Supported</td>
|
|
7010
7038
|
* <td>Not available</td>
|
|
7011
7039
|
* <td>Not available</td>
|
|
7012
7040
|
* <td>Not available</td>
|
|
7013
7041
|
* </tr>
|
|
7014
7042
|
* <tr>
|
|
7015
7043
|
* <td><strong>PowerPoint</strong></td>
|
|
7016
|
-
* <td>
|
|
7044
|
+
* <td>Supported</td>
|
|
7017
7045
|
* <td>Supported</td>
|
|
7018
7046
|
* <td>Supported</td>
|
|
7019
7047
|
* <td>Supported</td>
|
|
@@ -7029,7 +7057,7 @@ declare namespace Office {
|
|
|
7029
7057
|
* </tr>
|
|
7030
7058
|
* </table>
|
|
7031
7059
|
*
|
|
7032
|
-
*
|
|
7060
|
+
* **Important**: In Outlook, the Office theme API is supported starting in
|
|
7033
7061
|
* {@link https://learn.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.14/outlook-requirement-set-1.14 | Mailbox requirement set 1.14}.
|
|
7034
7062
|
* It isn't supported in Outlook add-ins that implement {@link https://learn.microsoft.com/office/dev/add-ins/outlook/autolaunch | event-based activation}.
|
|
7035
7063
|
*/
|
|
@@ -7050,6 +7078,22 @@ declare namespace Office {
|
|
|
7050
7078
|
* Gets the Office theme control foreground color as a hexadecimal color triplet (e.g., "#FFA500").
|
|
7051
7079
|
*/
|
|
7052
7080
|
controlForegroundColor: string;
|
|
7081
|
+
/**
|
|
7082
|
+
* Returns `true` if the Office theme that's currently selected is **Black** (dark mode) or **Dark Gray**.
|
|
7083
|
+
*
|
|
7084
|
+
* @remarks
|
|
7085
|
+
*
|
|
7086
|
+
* **Important**: The `isDarkTheme` property isn't yet supported in Outlook.
|
|
7087
|
+
*/
|
|
7088
|
+
isDarkTheme: boolean;
|
|
7089
|
+
/**
|
|
7090
|
+
* Gets the Office theme that's currently selected.
|
|
7091
|
+
*
|
|
7092
|
+
* @remarks
|
|
7093
|
+
*
|
|
7094
|
+
* **Important**: The `themeId` property isn't yet supported in Outlook.
|
|
7095
|
+
*/
|
|
7096
|
+
themeId: ThemeId;
|
|
7053
7097
|
}
|
|
7054
7098
|
/**
|
|
7055
7099
|
* Specifies a cell, or row, or column, by its zero-based row and/or column number. Example: `{row: 3, column: 4}` specifies the cell in the 3rd
|
|
@@ -85271,6 +85315,42 @@ declare namespace Word {
|
|
|
85271
85315
|
*/
|
|
85272
85316
|
berry = "Berry",
|
|
85273
85317
|
}
|
|
85318
|
+
/**
|
|
85319
|
+
* Properties defining the behavior of the pop-up menu for a given critique.
|
|
85320
|
+
*
|
|
85321
|
+
* @remarks
|
|
85322
|
+
* [Api set: WordApi 1.8]
|
|
85323
|
+
*/
|
|
85324
|
+
interface CritiquePopupOptions {
|
|
85325
|
+
/**
|
|
85326
|
+
* Gets the manifest resource ID of the string to use for branding. This branding text appears next to your add-in icon in the pop-up menu.
|
|
85327
|
+
*
|
|
85328
|
+
* @remarks
|
|
85329
|
+
* [Api set: WordApi 1.8]
|
|
85330
|
+
*/
|
|
85331
|
+
brandingTextResourceId: string;
|
|
85332
|
+
/**
|
|
85333
|
+
* Gets the manifest resource ID of the string to use as the subtitle.
|
|
85334
|
+
*
|
|
85335
|
+
* @remarks
|
|
85336
|
+
* [Api set: WordApi 1.8]
|
|
85337
|
+
*/
|
|
85338
|
+
subtitleResourceId: string;
|
|
85339
|
+
/**
|
|
85340
|
+
* Gets the suggestions to display in the critique pop-up menu.
|
|
85341
|
+
*
|
|
85342
|
+
* @remarks
|
|
85343
|
+
* [Api set: WordApi 1.8]
|
|
85344
|
+
*/
|
|
85345
|
+
suggestions: string[];
|
|
85346
|
+
/**
|
|
85347
|
+
* Gets the manifest resource ID of the string to use as the title.
|
|
85348
|
+
*
|
|
85349
|
+
* @remarks
|
|
85350
|
+
* [Api set: WordApi 1.8]
|
|
85351
|
+
*/
|
|
85352
|
+
titleResourceId: string;
|
|
85353
|
+
}
|
|
85274
85354
|
/**
|
|
85275
85355
|
* Critique that will be rendered as underline for the specified part of paragraph in the document.
|
|
85276
85356
|
*
|
|
@@ -85292,6 +85372,13 @@ declare namespace Word {
|
|
|
85292
85372
|
* [Api set: WordApi 1.7]
|
|
85293
85373
|
*/
|
|
85294
85374
|
length: number;
|
|
85375
|
+
/**
|
|
85376
|
+
* Specifies the behavior of the pop-up menu for the critique.
|
|
85377
|
+
*
|
|
85378
|
+
* @remarks
|
|
85379
|
+
* [Api set: WordApi 1.8]
|
|
85380
|
+
*/
|
|
85381
|
+
popupOptions: Word.CritiquePopupOptions;
|
|
85295
85382
|
/**
|
|
85296
85383
|
* Gets the start index of the critique inside paragraph.
|
|
85297
85384
|
*
|
|
@@ -85545,6 +85632,35 @@ declare namespace Word {
|
|
|
85545
85632
|
*/
|
|
85546
85633
|
id: string;
|
|
85547
85634
|
}
|
|
85635
|
+
/**
|
|
85636
|
+
* Represents action information that's passed back on annotation pop-up action event.
|
|
85637
|
+
*
|
|
85638
|
+
* @remarks
|
|
85639
|
+
* [Api set: WordApi 1.8]
|
|
85640
|
+
*/
|
|
85641
|
+
interface AnnotationPopupActionEventArgs {
|
|
85642
|
+
/**
|
|
85643
|
+
* Specifies the chosen action in the pop-up menu.
|
|
85644
|
+
*
|
|
85645
|
+
* @remarks
|
|
85646
|
+
* [Api set: WordApi 1.8]
|
|
85647
|
+
*/
|
|
85648
|
+
action: string;
|
|
85649
|
+
/**
|
|
85650
|
+
* Specifies the accepted suggestion (only populated when accepting a critique suggestion).
|
|
85651
|
+
*
|
|
85652
|
+
* @remarks
|
|
85653
|
+
* [Api set: WordApi 1.8]
|
|
85654
|
+
*/
|
|
85655
|
+
critiqueSuggestion: string;
|
|
85656
|
+
/**
|
|
85657
|
+
* Specifies the annotation ID for which the event was fired.
|
|
85658
|
+
*
|
|
85659
|
+
* @remarks
|
|
85660
|
+
* [Api set: WordApi 1.8]
|
|
85661
|
+
*/
|
|
85662
|
+
id: string;
|
|
85663
|
+
}
|
|
85548
85664
|
/**
|
|
85549
85665
|
* Contains a collection of {@link Word.Annotation} objects.
|
|
85550
85666
|
*
|
|
@@ -88173,6 +88289,15 @@ declare namespace Word {
|
|
|
88173
88289
|
* @eventproperty
|
|
88174
88290
|
*/
|
|
88175
88291
|
readonly onAnnotationInserted: OfficeExtension.EventHandlers<Word.AnnotationInsertedEventArgs>;
|
|
88292
|
+
/**
|
|
88293
|
+
* Occurs when the user performs an action in an annotation pop-up menu.
|
|
88294
|
+
*
|
|
88295
|
+
* @remarks
|
|
88296
|
+
* [Api set: WordApi 1.8]
|
|
88297
|
+
*
|
|
88298
|
+
* @eventproperty
|
|
88299
|
+
*/
|
|
88300
|
+
readonly onAnnotationPopupAction: OfficeExtension.EventHandlers<Word.AnnotationPopupActionEventArgs>;
|
|
88176
88301
|
/**
|
|
88177
88302
|
* Occurs when the user deletes one or more annotations.
|
|
88178
88303
|
*
|
|
@@ -91019,6 +91144,14 @@ declare namespace Word {
|
|
|
91019
91144
|
* [Api set: WordApi 1.6]
|
|
91020
91145
|
*/
|
|
91021
91146
|
getTrackedChanges(): Word.TrackedChangeCollection;
|
|
91147
|
+
/**
|
|
91148
|
+
* Highlights the range temporarily without changing document content.
|
|
91149
|
+
To highlight the text permanently, set the range's Font.HighlightColor.
|
|
91150
|
+
*
|
|
91151
|
+
* @remarks
|
|
91152
|
+
* [Api set: WordApi 1.8]
|
|
91153
|
+
*/
|
|
91154
|
+
highlight(): void;
|
|
91022
91155
|
/**
|
|
91023
91156
|
* Inserts a bookmark on the range. If a bookmark of the same name exists somewhere, it is deleted first.
|
|
91024
91157
|
*
|
|
@@ -91223,6 +91356,13 @@ declare namespace Word {
|
|
|
91223
91356
|
* @param range Required. Another range.
|
|
91224
91357
|
*/
|
|
91225
91358
|
intersectWithOrNullObject(range: Word.Range): Word.Range;
|
|
91359
|
+
/**
|
|
91360
|
+
* Removes the highlight added by the Highlight function if any.
|
|
91361
|
+
*
|
|
91362
|
+
* @remarks
|
|
91363
|
+
* [Api set: WordApi 1.8]
|
|
91364
|
+
*/
|
|
91365
|
+
removeHighlight(): void;
|
|
91226
91366
|
/**
|
|
91227
91367
|
* Performs a search with the specified SearchOptions on the scope of the range object. The search results are a collection of range objects.
|
|
91228
91368
|
*
|
|
@@ -93960,6 +94100,12 @@ declare namespace Word {
|
|
|
93960
94100
|
* [Api set: WordApi 1.7]
|
|
93961
94101
|
*/
|
|
93962
94102
|
annotationRemoved = "AnnotationRemoved",
|
|
94103
|
+
/**
|
|
94104
|
+
* Represents an action in the annotation pop-up.
|
|
94105
|
+
* @remarks
|
|
94106
|
+
* [Api set: WordApi 1.8]
|
|
94107
|
+
*/
|
|
94108
|
+
annotationPopupAction = "AnnotationPopupAction",
|
|
93963
94109
|
}
|
|
93964
94110
|
/**
|
|
93965
94111
|
* An enum that specifies an event's source. It can be local or remote (through coauthoring).
|
|
@@ -93992,7 +94138,7 @@ declare namespace Word {
|
|
|
93992
94138
|
* @remarks
|
|
93993
94139
|
* [Api set: WordApi 1.5]
|
|
93994
94140
|
*/
|
|
93995
|
-
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved";
|
|
94141
|
+
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
|
|
93996
94142
|
/**
|
|
93997
94143
|
* Gets the content control IDs.
|
|
93998
94144
|
*
|
|
@@ -94021,7 +94167,7 @@ declare namespace Word {
|
|
|
94021
94167
|
* @remarks
|
|
94022
94168
|
* [Api set: WordApi 1.5]
|
|
94023
94169
|
*/
|
|
94024
|
-
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved";
|
|
94170
|
+
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
|
|
94025
94171
|
/**
|
|
94026
94172
|
* Gets the content control IDs.
|
|
94027
94173
|
*
|
|
@@ -94050,7 +94196,7 @@ declare namespace Word {
|
|
|
94050
94196
|
* @remarks
|
|
94051
94197
|
* [Api set: WordApi 1.5]
|
|
94052
94198
|
*/
|
|
94053
|
-
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved";
|
|
94199
|
+
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
|
|
94054
94200
|
/**
|
|
94055
94201
|
* Gets the content control IDs.
|
|
94056
94202
|
*
|
|
@@ -94079,7 +94225,7 @@ declare namespace Word {
|
|
|
94079
94225
|
* @remarks
|
|
94080
94226
|
* [Api set: WordApi 1.5]
|
|
94081
94227
|
*/
|
|
94082
|
-
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved";
|
|
94228
|
+
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
|
|
94083
94229
|
/**
|
|
94084
94230
|
* Gets the content control IDs.
|
|
94085
94231
|
*
|
|
@@ -94108,7 +94254,7 @@ declare namespace Word {
|
|
|
94108
94254
|
* @remarks
|
|
94109
94255
|
* [Api set: WordApi 1.5]
|
|
94110
94256
|
*/
|
|
94111
|
-
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved";
|
|
94257
|
+
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
|
|
94112
94258
|
/**
|
|
94113
94259
|
* Gets the content control IDs.
|
|
94114
94260
|
*
|
|
@@ -94137,7 +94283,7 @@ declare namespace Word {
|
|
|
94137
94283
|
* @remarks
|
|
94138
94284
|
* [Api set: WordApi 1.5]
|
|
94139
94285
|
*/
|
|
94140
|
-
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved";
|
|
94286
|
+
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
|
|
94141
94287
|
/**
|
|
94142
94288
|
* Gets the content control IDs.
|
|
94143
94289
|
*
|
|
@@ -94173,7 +94319,7 @@ declare namespace Word {
|
|
|
94173
94319
|
* @remarks
|
|
94174
94320
|
* [Api set: WordApi 1.6]
|
|
94175
94321
|
*/
|
|
94176
|
-
type: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved";
|
|
94322
|
+
type: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
|
|
94177
94323
|
/**
|
|
94178
94324
|
* Gets the unique IDs of the involved paragraphs. IDs are in standard 8-4-4-4-12 GUID format without curly braces and differ across sessions and coauthors.
|
|
94179
94325
|
*
|
|
@@ -94202,7 +94348,7 @@ declare namespace Word {
|
|
|
94202
94348
|
* @remarks
|
|
94203
94349
|
* [Api set: WordApi 1.6]
|
|
94204
94350
|
*/
|
|
94205
|
-
type: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved";
|
|
94351
|
+
type: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
|
|
94206
94352
|
/**
|
|
94207
94353
|
* Gets the unique IDs of the involved paragraphs. IDs are in standard 8-4-4-4-12 GUID format without curly braces and differ across sessions and coauthors.
|
|
94208
94354
|
*
|
|
@@ -94231,7 +94377,7 @@ declare namespace Word {
|
|
|
94231
94377
|
* @remarks
|
|
94232
94378
|
* [Api set: WordApi 1.6]
|
|
94233
94379
|
*/
|
|
94234
|
-
type: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved";
|
|
94380
|
+
type: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
|
|
94235
94381
|
/**
|
|
94236
94382
|
* Gets the unique IDs of the involved paragraphs. IDs are in standard 8-4-4-4-12 GUID format without curly braces and differ across sessions and coauthors.
|
|
94237
94383
|
*
|
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.396",
|
|
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",
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
|
-
"typesPublisherContentHash": "
|
|
48
|
+
"typesPublisherContentHash": "b89b47f8ede1482e3013371cd555c5438702548ff0ee78c159b312f2a1950722",
|
|
49
49
|
"typeScriptVersion": "4.7"
|
|
50
50
|
}
|