ppt2json 0.3.0 → 0.3.2
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 +5 -6
- package/dist/index.d.mts +2 -4
- package/dist/index.d.ts +2 -4
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -4
package/dist/index.mjs
CHANGED
|
@@ -9742,7 +9742,7 @@ var DEFAULT_THEME = {
|
|
|
9742
9742
|
async function parsePptxToJson(file) {
|
|
9743
9743
|
const fileBuffer = await file.arrayBuffer();
|
|
9744
9744
|
return {
|
|
9745
|
-
|
|
9745
|
+
presentation: await buildDeckFromPptx(fileBuffer),
|
|
9746
9746
|
warnings: []
|
|
9747
9747
|
};
|
|
9748
9748
|
}
|