pptxtojson 2.0.4 → 2.0.6

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.
package/dist/index.d.ts CHANGED
@@ -54,14 +54,21 @@ export interface AutoFit {
54
54
  fontScale?: number
55
55
  }
56
56
 
57
- export interface TextInset {
58
- l: number
59
- t: number
60
- r: number
61
- b: number
62
- }
63
-
64
- export interface Shape {
57
+ export interface TextInset {
58
+ l: number
59
+ t: number
60
+ r: number
61
+ b: number
62
+ }
63
+
64
+ export interface PathViewBox {
65
+ x: number
66
+ y: number
67
+ width: number
68
+ height: number
69
+ }
70
+
71
+ export interface Shape {
65
72
  type: 'shape'
66
73
  left: number
67
74
  top: number
@@ -78,9 +85,11 @@ export interface Shape {
78
85
  isFlipH: boolean
79
86
  rotate: number
80
87
  shapType: string
81
- vAlign: string
82
- path?: string
83
- keypoints?: Record<string, number>
88
+ vAlign: string
89
+ path?: string
90
+ pathViewBox?: PathViewBox
91
+ strokeOnly?: boolean
92
+ keypoints?: Record<string, number>
84
93
  name: string
85
94
  order: number
86
95
  autoFit?: AutoFit