Skip to content

Commit 7a56518

Browse files
committed
minor
1 parent 10b3218 commit 7a56518

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

types/index.d.ts

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for pptxgenjs 3.8.0
1+
// Type definitions for pptxgenjs 3.9.0
22
// Project: https://gitbrent.github.io/PptxGenJS/
33
// Definitions by: Brent Ely <https://github.com/gitbrent/>
44
// Michael Beaumont <https://github.com/michaelbeaumont>
@@ -1075,12 +1075,6 @@ declare namespace PptxGenJS {
10751075
* @default false
10761076
*/
10771077
breakLine?: boolean
1078-
/**
1079-
* Add a soft line-break (shift+enter) before line text content
1080-
* @default false
1081-
* @since v3.5.0
1082-
*/
1083-
softBreakBefore?: boolean
10841078
/**
10851079
* Add standard or custom bullet
10861080
* - use `true` for standard bullet
@@ -1196,6 +1190,12 @@ declare namespace PptxGenJS {
11961190
* @example 'fr-CA' // french Canadian
11971191
*/
11981192
lang?: string
1193+
/**
1194+
* Add a soft line-break (shift+enter) before line text content
1195+
* @default false
1196+
* @since v3.5.0
1197+
*/
1198+
softBreakBefore?: boolean
11991199
/**
12001200
* tab stops
12011201
* - PowerPoint: Paragraph > Tabs > Tab stop position
@@ -2034,7 +2034,7 @@ declare namespace PptxGenJS {
20342034
/**
20352035
* MS-PPT > Format chart > Format Data Point > Series Options > "Series Overlap"
20362036
* - overlap (percent)
2037-
* - range: `-100` - `100`
2037+
* - range: `-100`-`100`
20382038
* @since v3.9.0
20392039
* @default 0
20402040
*/
@@ -2194,6 +2194,10 @@ declare namespace PptxGenJS {
21942194
height: number
21952195
}
21962196
export interface SlideNumberProps extends PositionProps, TextBaseProps {
2197+
/**
2198+
* margin (points)
2199+
* TODO: convert to inches in 4.0 (valid values are 0-22)
2200+
*/
21972201
margin?: Margin
21982202
}
21992203
export interface SlideMasterProps {

0 commit comments

Comments
 (0)