pptxtojson 2.0.2 → 2.0.3

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,6 +54,13 @@ 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
+
57
64
  export interface Shape {
58
65
  type: 'shape'
59
66
  left: number
@@ -77,6 +84,7 @@ export interface Shape {
77
84
  name: string
78
85
  order: number
79
86
  autoFit?: AutoFit
87
+ textInset?: TextInset
80
88
  link?: string
81
89
  }
82
90
 
@@ -101,6 +109,7 @@ export interface Text {
101
109
  name: string
102
110
  order: number
103
111
  autoFit?: AutoFit
112
+ textInset?: TextInset
104
113
  link?: string
105
114
  }
106
115
 
@@ -322,4 +331,4 @@ export const parse: (file: ArrayBuffer, options?: Options) => Promise<{
322
331
  width: number
323
332
  height: number
324
333
  }
325
- }>
334
+ }>