pptxtojson 0.0.3 → 0.0.5
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 +2 -2
- package/package.json +1 -1
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 {
|
|
@@ -111,7 +111,7 @@ export interface Slide {
|
|
|
111
111
|
elements: Element[],
|
|
112
112
|
}
|
|
113
113
|
|
|
114
|
-
export const parse: (file:
|
|
114
|
+
export const parse: (file: ArrayBuffer) => {
|
|
115
115
|
slides: Slide[]
|
|
116
116
|
size: {
|
|
117
117
|
width: number
|