pptxtojson 1.5.2 → 1.6.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
@@ -258,11 +258,18 @@ export interface Group {
258
258
  }
259
259
  export type Element = BaseElement | Group
260
260
 
261
+ export interface SlideTransition {
262
+ type: string
263
+ duration: number
264
+ direction: string | null
265
+ }
266
+
261
267
  export interface Slide {
262
268
  fill: Fill
263
269
  elements: Element[]
264
270
  layoutElements: Element[]
265
271
  note: string
272
+ transition?: SlideTransition | null
266
273
  }
267
274
 
268
275
  export interface Options {