pptxtojson 2.0.6 → 2.1.0

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
@@ -68,6 +68,12 @@ export interface PathViewBox {
68
68
  height: number
69
69
  }
70
70
 
71
+ export interface LineEnd {
72
+ type: 'none' | 'triangle' | 'stealth' | 'diamond' | 'oval' | 'arrow'
73
+ width?: 'sm' | 'med' | 'lg'
74
+ length?: 'sm' | 'med' | 'lg'
75
+ }
76
+
71
77
  export interface Shape {
72
78
  type: 'shape'
73
79
  left: number
@@ -88,6 +94,8 @@ export interface Shape {
88
94
  vAlign: string
89
95
  path?: string
90
96
  pathViewBox?: PathViewBox
97
+ headEnd?: LineEnd
98
+ tailEnd?: LineEnd
91
99
  strokeOnly?: boolean
92
100
  keypoints?: Record<string, number>
93
101
  name: string