@types/office-js-preview 1.0.524 → 1.0.526
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 +1 -1
- office-js-preview/index.d.ts +93 -87
- office-js-preview/package.json +2 -2
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: Tue, 29 Oct 2024 17:34:47 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js-preview/index.d.ts
CHANGED
|
@@ -18010,6 +18010,14 @@ declare namespace Office {
|
|
|
18010
18010
|
* <td>New messages and message replies</td>
|
|
18011
18011
|
* </tr>
|
|
18012
18012
|
* <tr>
|
|
18013
|
+
* <td>IPM.Note.SMIME</td>
|
|
18014
|
+
* <td>Encrypted messages that can also be signed</td>
|
|
18015
|
+
* </tr>
|
|
18016
|
+
* <tr>
|
|
18017
|
+
* <td>IPM.Note.SMIME.MultipartSigned</td>
|
|
18018
|
+
* <td>Clear-signed messages</td>
|
|
18019
|
+
* </tr>
|
|
18020
|
+
* <tr>
|
|
18013
18021
|
* <td>IPM.Schedule.Meeting.Request</td>
|
|
18014
18022
|
* <td>Meeting requests</td>
|
|
18015
18023
|
* </tr>
|
|
@@ -124182,6 +124190,86 @@ declare namespace PowerPoint {
|
|
|
124182
124190
|
*/
|
|
124183
124191
|
width?: number;
|
|
124184
124192
|
}
|
|
124193
|
+
/**
|
|
124194
|
+
* Specifies the dash style for a line.
|
|
124195
|
+
*
|
|
124196
|
+
* @remarks
|
|
124197
|
+
* [Api set: PowerPointApi 1.4]
|
|
124198
|
+
*/
|
|
124199
|
+
enum ShapeLineDashStyle {
|
|
124200
|
+
/**
|
|
124201
|
+
* The dash line pattern.
|
|
124202
|
+
* @remarks
|
|
124203
|
+
* [Api set: PowerPointApi 1.4]
|
|
124204
|
+
*/
|
|
124205
|
+
dash = "Dash",
|
|
124206
|
+
/**
|
|
124207
|
+
* The dash-dot line pattern.
|
|
124208
|
+
* @remarks
|
|
124209
|
+
* [Api set: PowerPointApi 1.4]
|
|
124210
|
+
*/
|
|
124211
|
+
dashDot = "DashDot",
|
|
124212
|
+
/**
|
|
124213
|
+
* The dash-dot-dot line pattern.
|
|
124214
|
+
* @remarks
|
|
124215
|
+
* [Api set: PowerPointApi 1.4]
|
|
124216
|
+
*/
|
|
124217
|
+
dashDotDot = "DashDotDot",
|
|
124218
|
+
/**
|
|
124219
|
+
* The long dash line pattern.
|
|
124220
|
+
* @remarks
|
|
124221
|
+
* [Api set: PowerPointApi 1.4]
|
|
124222
|
+
*/
|
|
124223
|
+
longDash = "LongDash",
|
|
124224
|
+
/**
|
|
124225
|
+
* The long dash-dot line pattern.
|
|
124226
|
+
* @remarks
|
|
124227
|
+
* [Api set: PowerPointApi 1.4]
|
|
124228
|
+
*/
|
|
124229
|
+
longDashDot = "LongDashDot",
|
|
124230
|
+
/**
|
|
124231
|
+
* The round dot line pattern.
|
|
124232
|
+
* @remarks
|
|
124233
|
+
* [Api set: PowerPointApi 1.4]
|
|
124234
|
+
*/
|
|
124235
|
+
roundDot = "RoundDot",
|
|
124236
|
+
/**
|
|
124237
|
+
* The solid line pattern.
|
|
124238
|
+
* @remarks
|
|
124239
|
+
* [Api set: PowerPointApi 1.4]
|
|
124240
|
+
*/
|
|
124241
|
+
solid = "Solid",
|
|
124242
|
+
/**
|
|
124243
|
+
* The square dot line pattern.
|
|
124244
|
+
* @remarks
|
|
124245
|
+
* [Api set: PowerPointApi 1.4]
|
|
124246
|
+
*/
|
|
124247
|
+
squareDot = "SquareDot",
|
|
124248
|
+
/**
|
|
124249
|
+
* The long dash-dot-dot line pattern.
|
|
124250
|
+
* @remarks
|
|
124251
|
+
* [Api set: PowerPointApi 1.4]
|
|
124252
|
+
*/
|
|
124253
|
+
longDashDotDot = "LongDashDotDot",
|
|
124254
|
+
/**
|
|
124255
|
+
* The system dash line pattern.
|
|
124256
|
+
* @remarks
|
|
124257
|
+
* [Api set: PowerPointApi 1.4]
|
|
124258
|
+
*/
|
|
124259
|
+
systemDash = "SystemDash",
|
|
124260
|
+
/**
|
|
124261
|
+
* The system dot line pattern.
|
|
124262
|
+
* @remarks
|
|
124263
|
+
* [Api set: PowerPointApi 1.4]
|
|
124264
|
+
*/
|
|
124265
|
+
systemDot = "SystemDot",
|
|
124266
|
+
/**
|
|
124267
|
+
* The system dash-dot line pattern.
|
|
124268
|
+
* @remarks
|
|
124269
|
+
* [Api set: PowerPointApi 1.4]
|
|
124270
|
+
*/
|
|
124271
|
+
systemDashDot = "SystemDashDot",
|
|
124272
|
+
}
|
|
124185
124273
|
/**
|
|
124186
124274
|
* The type of underline applied to a font.
|
|
124187
124275
|
*
|
|
@@ -124342,90 +124430,10 @@ declare namespace PowerPoint {
|
|
|
124342
124430
|
*/
|
|
124343
124431
|
thaiDistributed = "ThaiDistributed",
|
|
124344
124432
|
}
|
|
124345
|
-
/**
|
|
124346
|
-
* Specifies the dash style for a line.
|
|
124347
|
-
*
|
|
124348
|
-
* @remarks
|
|
124349
|
-
* [Api set: PowerPointApi 1.4]
|
|
124350
|
-
*/
|
|
124351
|
-
enum ShapeLineDashStyle {
|
|
124352
|
-
/**
|
|
124353
|
-
* The dash line pattern.
|
|
124354
|
-
* @remarks
|
|
124355
|
-
* [Api set: PowerPointApi 1.4]
|
|
124356
|
-
*/
|
|
124357
|
-
dash = "Dash",
|
|
124358
|
-
/**
|
|
124359
|
-
* The dash-dot line pattern.
|
|
124360
|
-
* @remarks
|
|
124361
|
-
* [Api set: PowerPointApi 1.4]
|
|
124362
|
-
*/
|
|
124363
|
-
dashDot = "DashDot",
|
|
124364
|
-
/**
|
|
124365
|
-
* The dash-dot-dot line pattern.
|
|
124366
|
-
* @remarks
|
|
124367
|
-
* [Api set: PowerPointApi 1.4]
|
|
124368
|
-
*/
|
|
124369
|
-
dashDotDot = "DashDotDot",
|
|
124370
|
-
/**
|
|
124371
|
-
* The long dash line pattern.
|
|
124372
|
-
* @remarks
|
|
124373
|
-
* [Api set: PowerPointApi 1.4]
|
|
124374
|
-
*/
|
|
124375
|
-
longDash = "LongDash",
|
|
124376
|
-
/**
|
|
124377
|
-
* The long dash-dot line pattern.
|
|
124378
|
-
* @remarks
|
|
124379
|
-
* [Api set: PowerPointApi 1.4]
|
|
124380
|
-
*/
|
|
124381
|
-
longDashDot = "LongDashDot",
|
|
124382
|
-
/**
|
|
124383
|
-
* The round dot line pattern.
|
|
124384
|
-
* @remarks
|
|
124385
|
-
* [Api set: PowerPointApi 1.4]
|
|
124386
|
-
*/
|
|
124387
|
-
roundDot = "RoundDot",
|
|
124388
|
-
/**
|
|
124389
|
-
* The solid line pattern.
|
|
124390
|
-
* @remarks
|
|
124391
|
-
* [Api set: PowerPointApi 1.4]
|
|
124392
|
-
*/
|
|
124393
|
-
solid = "Solid",
|
|
124394
|
-
/**
|
|
124395
|
-
* The square dot line pattern.
|
|
124396
|
-
* @remarks
|
|
124397
|
-
* [Api set: PowerPointApi 1.4]
|
|
124398
|
-
*/
|
|
124399
|
-
squareDot = "SquareDot",
|
|
124400
|
-
/**
|
|
124401
|
-
* The long dash-dot-dot line pattern.
|
|
124402
|
-
* @remarks
|
|
124403
|
-
* [Api set: PowerPointApi 1.4]
|
|
124404
|
-
*/
|
|
124405
|
-
longDashDotDot = "LongDashDotDot",
|
|
124406
|
-
/**
|
|
124407
|
-
* The system dash line pattern.
|
|
124408
|
-
* @remarks
|
|
124409
|
-
* [Api set: PowerPointApi 1.4]
|
|
124410
|
-
*/
|
|
124411
|
-
systemDash = "SystemDash",
|
|
124412
|
-
/**
|
|
124413
|
-
* The system dot line pattern.
|
|
124414
|
-
* @remarks
|
|
124415
|
-
* [Api set: PowerPointApi 1.4]
|
|
124416
|
-
*/
|
|
124417
|
-
systemDot = "SystemDot",
|
|
124418
|
-
/**
|
|
124419
|
-
* The system dash-dot line pattern.
|
|
124420
|
-
* @remarks
|
|
124421
|
-
* [Api set: PowerPointApi 1.4]
|
|
124422
|
-
*/
|
|
124423
|
-
systemDashDot = "SystemDashDot",
|
|
124424
|
-
}
|
|
124425
124433
|
/**
|
|
124426
124434
|
* Represents the vertical alignment of a {@link PowerPoint.TextFrame} in a {@link PowerPoint.Shape}.
|
|
124427
124435
|
If one the centered options are selected, the contents of the `TextFrame` will be centered horizontally within the `Shape` as a group.
|
|
124428
|
-
To change the horizontal alignment of a text, see {@link PowerPoint.ParagraphFormat} and {@link PowerPoint.ParagraphHorizontalAlignment
|
|
124436
|
+
To change the horizontal alignment of a text, see {@link PowerPoint.ParagraphFormat} and {@link PowerPoint.ParagraphHorizontalAlignment}.
|
|
124429
124437
|
*
|
|
124430
124438
|
* @remarks
|
|
124431
124439
|
* [Api set: PowerPointApi 1.4]
|
|
@@ -126558,9 +126566,8 @@ declare namespace PowerPoint {
|
|
|
126558
126566
|
*/
|
|
126559
126567
|
getItemAt(index: number): PowerPoint.Slide;
|
|
126560
126568
|
/**
|
|
126561
|
-
* Gets a slide using its unique ID. If such a slide does not exist, an object with an `isNullObject` property set to true is returned. For further information,
|
|
126562
|
-
|
|
126563
|
-
and properties}.
|
|
126569
|
+
* Gets a slide using its unique ID. If such a slide does not exist, an object with an `isNullObject` property set to true is returned. For further information, see
|
|
126570
|
+
{@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
126564
126571
|
*
|
|
126565
126572
|
* @remarks
|
|
126566
126573
|
* [Api set: PowerPointApi 1.2]
|
|
@@ -126633,9 +126640,8 @@ declare namespace PowerPoint {
|
|
|
126633
126640
|
*/
|
|
126634
126641
|
getItemAt(index: number): PowerPoint.Slide;
|
|
126635
126642
|
/**
|
|
126636
|
-
* Gets a slide using its unique ID. If such a slide does not exist, an object with an `isNullObject` property set to true is returned. For further information,
|
|
126637
|
-
|
|
126638
|
-
and properties}.
|
|
126643
|
+
* Gets a slide using its unique ID. If such a slide does not exist, an object with an `isNullObject` property set to true is returned. For further information, see
|
|
126644
|
+
{@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
126639
126645
|
*
|
|
126640
126646
|
* @remarks
|
|
126641
126647
|
* [Api set: PowerPointApi 1.5]
|
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.526",
|
|
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": "181c7cade0f84b9b679fa655e06c0bf9bc21220ac84137bb6259f2af77256dfa",
|
|
50
50
|
"typeScriptVersion": "4.8",
|
|
51
51
|
"nonNpm": true
|
|
52
52
|
}
|