pptxtojson 0.0.11 → 0.0.12

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
@@ -149,10 +149,10 @@ export interface Slide {
149
149
  elements: Element[]
150
150
  }
151
151
 
152
- export const parse: (file: ArrayBuffer) => {
152
+ export const parse: (file: ArrayBuffer) => Promise<{
153
153
  slides: Slide[]
154
154
  size: {
155
155
  width: number
156
156
  height: number
157
157
  }
158
- }
158
+ }>