pptxtojson 1.7.0 → 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