pptxtojson 1.8.0 → 1.10.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
@@ -47,6 +47,11 @@ export interface Border {
47
47
  borderType:'solid' | 'dashed' | 'dotted'
48
48
  }
49
49
 
50
+ export interface AutoFit {
51
+ type: 'shape' | 'text'
52
+ fontScale?: number
53
+ }
54
+
50
55
  export interface Shape {
51
56
  type: 'shape'
52
57
  left: number
@@ -68,6 +73,7 @@ export interface Shape {
68
73
  path?: string
69
74
  name: string
70
75
  order: number
76
+ autoFit?: AutoFit
71
77
  }
72
78
 
73
79
  export interface Text {
@@ -90,6 +96,7 @@ export interface Text {
90
96
  vAlign: string
91
97
  name: string
92
98
  order: number
99
+ autoFit?: AutoFit
93
100
  }
94
101
 
95
102
  export interface Image {