kt-forpro-tools 1.0.15 → 1.0.16

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/slides.ts +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kt-forpro-tools",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "",
5
5
  "author": "Miguel de Mendoza",
6
6
  "main": "src/index.ts",
package/src/slides.ts CHANGED
@@ -412,6 +412,10 @@ class __KT_SlidesAPI {
412
412
  const slidesInstance = new KT_Slides(options);
413
413
  slidesInstance.splitSlides();
414
414
  };
415
+ static cleanUp = (options: KT_SlidesOptions) => {
416
+ const slidesInstance = new KT_Slides(options);
417
+ slidesInstance.cleanUp();
418
+ };
415
419
  }
416
420
 
417
421
  export const KT_SlidesAPI = __KT_SlidesAPI;