@types/office-js-preview 1.0.524 → 1.0.525
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 +85 -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: Mon, 28 Oct 2024 16:38:07 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
office-js-preview/index.d.ts
CHANGED
|
@@ -124182,6 +124182,86 @@ declare namespace PowerPoint {
|
|
|
124182
124182
|
*/
|
|
124183
124183
|
width?: number;
|
|
124184
124184
|
}
|
|
124185
|
+
/**
|
|
124186
|
+
* Specifies the dash style for a line.
|
|
124187
|
+
*
|
|
124188
|
+
* @remarks
|
|
124189
|
+
* [Api set: PowerPointApi 1.4]
|
|
124190
|
+
*/
|
|
124191
|
+
enum ShapeLineDashStyle {
|
|
124192
|
+
/**
|
|
124193
|
+
* The dash line pattern.
|
|
124194
|
+
* @remarks
|
|
124195
|
+
* [Api set: PowerPointApi 1.4]
|
|
124196
|
+
*/
|
|
124197
|
+
dash = "Dash",
|
|
124198
|
+
/**
|
|
124199
|
+
* The dash-dot line pattern.
|
|
124200
|
+
* @remarks
|
|
124201
|
+
* [Api set: PowerPointApi 1.4]
|
|
124202
|
+
*/
|
|
124203
|
+
dashDot = "DashDot",
|
|
124204
|
+
/**
|
|
124205
|
+
* The dash-dot-dot line pattern.
|
|
124206
|
+
* @remarks
|
|
124207
|
+
* [Api set: PowerPointApi 1.4]
|
|
124208
|
+
*/
|
|
124209
|
+
dashDotDot = "DashDotDot",
|
|
124210
|
+
/**
|
|
124211
|
+
* The long dash line pattern.
|
|
124212
|
+
* @remarks
|
|
124213
|
+
* [Api set: PowerPointApi 1.4]
|
|
124214
|
+
*/
|
|
124215
|
+
longDash = "LongDash",
|
|
124216
|
+
/**
|
|
124217
|
+
* The long dash-dot line pattern.
|
|
124218
|
+
* @remarks
|
|
124219
|
+
* [Api set: PowerPointApi 1.4]
|
|
124220
|
+
*/
|
|
124221
|
+
longDashDot = "LongDashDot",
|
|
124222
|
+
/**
|
|
124223
|
+
* The round dot line pattern.
|
|
124224
|
+
* @remarks
|
|
124225
|
+
* [Api set: PowerPointApi 1.4]
|
|
124226
|
+
*/
|
|
124227
|
+
roundDot = "RoundDot",
|
|
124228
|
+
/**
|
|
124229
|
+
* The solid line pattern.
|
|
124230
|
+
* @remarks
|
|
124231
|
+
* [Api set: PowerPointApi 1.4]
|
|
124232
|
+
*/
|
|
124233
|
+
solid = "Solid",
|
|
124234
|
+
/**
|
|
124235
|
+
* The square dot line pattern.
|
|
124236
|
+
* @remarks
|
|
124237
|
+
* [Api set: PowerPointApi 1.4]
|
|
124238
|
+
*/
|
|
124239
|
+
squareDot = "SquareDot",
|
|
124240
|
+
/**
|
|
124241
|
+
* The long dash-dot-dot line pattern.
|
|
124242
|
+
* @remarks
|
|
124243
|
+
* [Api set: PowerPointApi 1.4]
|
|
124244
|
+
*/
|
|
124245
|
+
longDashDotDot = "LongDashDotDot",
|
|
124246
|
+
/**
|
|
124247
|
+
* The system dash line pattern.
|
|
124248
|
+
* @remarks
|
|
124249
|
+
* [Api set: PowerPointApi 1.4]
|
|
124250
|
+
*/
|
|
124251
|
+
systemDash = "SystemDash",
|
|
124252
|
+
/**
|
|
124253
|
+
* The system dot line pattern.
|
|
124254
|
+
* @remarks
|
|
124255
|
+
* [Api set: PowerPointApi 1.4]
|
|
124256
|
+
*/
|
|
124257
|
+
systemDot = "SystemDot",
|
|
124258
|
+
/**
|
|
124259
|
+
* The system dash-dot line pattern.
|
|
124260
|
+
* @remarks
|
|
124261
|
+
* [Api set: PowerPointApi 1.4]
|
|
124262
|
+
*/
|
|
124263
|
+
systemDashDot = "SystemDashDot",
|
|
124264
|
+
}
|
|
124185
124265
|
/**
|
|
124186
124266
|
* The type of underline applied to a font.
|
|
124187
124267
|
*
|
|
@@ -124342,90 +124422,10 @@ declare namespace PowerPoint {
|
|
|
124342
124422
|
*/
|
|
124343
124423
|
thaiDistributed = "ThaiDistributed",
|
|
124344
124424
|
}
|
|
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
124425
|
/**
|
|
124426
124426
|
* Represents the vertical alignment of a {@link PowerPoint.TextFrame} in a {@link PowerPoint.Shape}.
|
|
124427
124427
|
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
|
|
124428
|
+
To change the horizontal alignment of a text, see {@link PowerPoint.ParagraphFormat} and {@link PowerPoint.ParagraphHorizontalAlignment}.
|
|
124429
124429
|
*
|
|
124430
124430
|
* @remarks
|
|
124431
124431
|
* [Api set: PowerPointApi 1.4]
|
|
@@ -126558,9 +126558,8 @@ declare namespace PowerPoint {
|
|
|
126558
126558
|
*/
|
|
126559
126559
|
getItemAt(index: number): PowerPoint.Slide;
|
|
126560
126560
|
/**
|
|
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}.
|
|
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, see
|
|
126562
|
+
{@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
126564
126563
|
*
|
|
126565
126564
|
* @remarks
|
|
126566
126565
|
* [Api set: PowerPointApi 1.2]
|
|
@@ -126633,9 +126632,8 @@ declare namespace PowerPoint {
|
|
|
126633
126632
|
*/
|
|
126634
126633
|
getItemAt(index: number): PowerPoint.Slide;
|
|
126635
126634
|
/**
|
|
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}.
|
|
126635
|
+
* 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
|
|
126636
|
+
{@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
126639
126637
|
*
|
|
126640
126638
|
* @remarks
|
|
126641
126639
|
* [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.525",
|
|
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": "5d15e3b16ea115a508d69bf32c4ce720518d7f8429fd7b90a49c90e6fc453962",
|
|
50
50
|
"typeScriptVersion": "4.8",
|
|
51
51
|
"nonNpm": true
|
|
52
52
|
}
|