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.
- package/package.json +1 -1
- package/src/slides.ts +4 -0
package/package.json
CHANGED
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;
|