pptxtojson 0.0.4 → 0.0.6

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/.eslintrc.cjs CHANGED
@@ -42,7 +42,7 @@ module.exports = {
42
42
  'default-case': 'error',
43
43
  'consistent-this': ['error', '_this'],
44
44
  'max-depth': ['error', 6],
45
- 'max-lines': ['error', 1200],
45
+ 'max-lines': ['error', 2000],
46
46
  'no-multi-str': 'error',
47
47
  'space-infix-ops': 'error',
48
48
  'space-before-blocks': ['error', 'always'],
package/dist/index.d.ts CHANGED
@@ -73,7 +73,7 @@ export interface ChartXLabel {
73
73
  }
74
74
  export interface ChartItem {
75
75
  key: string
76
- values: ChartValue
76
+ values: ChartValue[]
77
77
  xlabels: ChartXLabel
78
78
  }
79
79
  export interface Chart {