ws-voice-infinity-global-module 0.9.84 → 0.9.88
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/lib/components.d.ts +6 -1
- package/lib/index.css +2 -2
- package/lib/interfaces.d.ts +3 -0
- package/lib/module/components/kamBallBanner/kamBallBanner.js +1 -1
- package/lib/module/components/selectTemplateFolder/selectTemplateFolderTemplate.js +1 -1
- package/lib/module/services/templateService.js +1 -1
- package/lib/module/services/utilService.js +1 -1
- package/lib/services.d.ts +1 -0
- package/package.json +1 -1
package/lib/components.d.ts
CHANGED
|
@@ -417,6 +417,7 @@ interface IDynamicTemplateImportProps {
|
|
|
417
417
|
skhLoad?: () => any;
|
|
418
418
|
usrLoad?: () => any;
|
|
419
419
|
zabLoad?: () => any;
|
|
420
|
+
apiriLoad?: () => any;
|
|
420
421
|
context?: any;
|
|
421
422
|
}
|
|
422
423
|
|
|
@@ -565,7 +566,11 @@ interface HlsPlayerProps {
|
|
|
565
566
|
declare class HlsPlayer extends React.Component<HlsPlayerProps, any> {
|
|
566
567
|
}
|
|
567
568
|
|
|
568
|
-
|
|
569
|
+
interface KamBallBannerProps {
|
|
570
|
+
description?: string;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
declare class KamBallBanner extends React.Component<KamBallBannerProps, any> {
|
|
569
574
|
}
|
|
570
575
|
|
|
571
576
|
export {
|