pptxtojson 1.5.1 → 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/README.md +145 -136
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +7 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/favicon.ico +0 -0
- package/index.html +437 -93
- package/package.json +1 -1
- package/src/animation.js +81 -0
- package/src/pptxtojson.js +8 -0
- package/src/shape.js +1 -1
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 {
|