@types/office-js-preview 1.0.700 → 1.0.702
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-preview/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for office-js-preview (https://github.com
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 22 Apr 2026 18:50:23 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js-preview/index.d.ts
CHANGED
|
@@ -9291,6 +9291,17 @@ declare namespace Office {
|
|
|
9291
9291
|
*/
|
|
9292
9292
|
javascriptRuntimeUrl: string;
|
|
9293
9293
|
}
|
|
9294
|
+
/**
|
|
9295
|
+
* Provides options related to the `onReady` event.
|
|
9296
|
+
*
|
|
9297
|
+
* @beta
|
|
9298
|
+
*/
|
|
9299
|
+
interface OnReadyOptions {
|
|
9300
|
+
/**
|
|
9301
|
+
* Enables the behavior that allows the `onReady` promise to be rejected.
|
|
9302
|
+
*/
|
|
9303
|
+
setRejectionEnabled?: () => void;
|
|
9304
|
+
}
|
|
9294
9305
|
/**
|
|
9295
9306
|
* Message used in the `onVisibilityModeChanged` invocation.
|
|
9296
9307
|
*/
|
|
@@ -72134,7 +72145,7 @@ declare namespace Excel {
|
|
|
72134
72145
|
*
|
|
72135
72146
|
* @param dateText Is text that represents a date in a Microsoft Excel date format, between 1/1/1900 or 1/1/1904 (depending on the workbook's date system) and 12/31/9999.
|
|
72136
72147
|
*/
|
|
72137
|
-
datevalue(dateText: string |
|
|
72148
|
+
datevalue(dateText: string | Excel.Range | Excel.RangeReference | Excel.FunctionResult<any>): FunctionResult<number>;
|
|
72138
72149
|
/**
|
|
72139
72150
|
* Returns the day of the month, a number from 1 to 31.
|
|
72140
72151
|
*
|
|
@@ -148585,8 +148596,7 @@ declare namespace Word {
|
|
|
148585
148596
|
* Adds a new `ListTemplate` object. Note: This operation isn't allowed if the collection represents list templates from a {@link Word.ListTemplateGallery}.
|
|
148586
148597
|
*
|
|
148587
148598
|
* @remarks
|
|
148588
|
-
* [Api set:
|
|
148589
|
-
* @beta
|
|
148599
|
+
* [Api set: WordApiDesktop 1.5]
|
|
148590
148600
|
*
|
|
148591
148601
|
* @param options Optional. Options for adding a new list template.
|
|
148592
148602
|
*/
|
|
@@ -148637,24 +148647,21 @@ declare namespace Word {
|
|
|
148637
148647
|
* Represents the options for the {@link Word.ListTemplateCollection | ListTemplateCollection.add} method.
|
|
148638
148648
|
*
|
|
148639
148649
|
* @remarks
|
|
148640
|
-
* [Api set:
|
|
148641
|
-
* @beta
|
|
148650
|
+
* [Api set: WordApiDesktop 1.5]
|
|
148642
148651
|
*/
|
|
148643
148652
|
interface ListTemplateAddOptions {
|
|
148644
148653
|
/**
|
|
148645
148654
|
* If provided, specifies the name of the list template to be added.
|
|
148646
148655
|
*
|
|
148647
148656
|
* @remarks
|
|
148648
|
-
* [Api set:
|
|
148649
|
-
* @beta
|
|
148657
|
+
* [Api set: WordApiDesktop 1.5]
|
|
148650
148658
|
*/
|
|
148651
148659
|
name?: string;
|
|
148652
148660
|
/**
|
|
148653
148661
|
* If provided, specifies whether to apply outline numbering to the new list template. The default value is `false`.
|
|
148654
148662
|
*
|
|
148655
148663
|
* @remarks
|
|
148656
|
-
* [Api set:
|
|
148657
|
-
* @beta
|
|
148664
|
+
* [Api set: WordApiDesktop 1.5]
|
|
148658
148665
|
*/
|
|
148659
148666
|
outlineNumbered?: boolean;
|
|
148660
148667
|
}
|
office-js-preview/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/office-js-preview",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.702",
|
|
4
4
|
"description": "TypeScript definitions for office-js-preview",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview",
|
|
6
6
|
"license": "MIT",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
48
|
"peerDependencies": {},
|
|
49
|
-
"typesPublisherContentHash": "
|
|
49
|
+
"typesPublisherContentHash": "02923cd89a5ce6c95dbe73ad954ba9a5b407a690fc53d4a2a13292787a01a1ca",
|
|
50
50
|
"typeScriptVersion": "5.3",
|
|
51
51
|
"nonNpm": true
|
|
52
52
|
}
|