pptxtojson 1.6.1 → 1.8.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
@@ -30,7 +30,16 @@ export interface GradientFill {
30
30
  }
31
31
  }
32
32
 
33
- export type Fill = ColorFill | ImageFill | GradientFill
33
+ export interface PatternFill {
34
+ type: 'pattern'
35
+ value: {
36
+ type: string
37
+ foregroundColor: string
38
+ backgroundColor: string
39
+ }
40
+ }
41
+
42
+ export type Fill = ColorFill | ImageFill | GradientFill | PatternFill
34
43
 
35
44
  export interface Border {
36
45
  borderColor: string
@@ -105,6 +114,13 @@ export interface Image {
105
114
  borderWidth: number
106
115
  borderType: 'solid' | 'dashed' | 'dotted'
107
116
  borderStrokeDasharray: string
117
+ filters?: {
118
+ sharpen?: number
119
+ colorTemperature?: number
120
+ saturation?: number
121
+ brightness?: number
122
+ contrast?: number
123
+ }
108
124
  }
109
125
 
110
126
  export interface TableCell {