@inceptionbg/iui 2.0.34 → 2.0.35

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/dist/index.d.ts CHANGED
@@ -1278,13 +1278,14 @@ declare const usePopupControl: (props?: {
1278
1278
  onCloseCallback?: () => void;
1279
1279
  }) => IPopupControl;
1280
1280
 
1281
+ interface IZendesk {
1282
+ show: () => void;
1283
+ hide: () => void;
1284
+ activate: () => void;
1285
+ setLocale: (locale: string) => void;
1286
+ }
1281
1287
  declare global {
1282
- var zE: {
1283
- show: () => void;
1284
- hide: () => void;
1285
- activate: () => void;
1286
- setLocale: (locale: string) => void;
1287
- };
1288
+ var zE: IZendesk;
1288
1289
  }
1289
1290
  declare const useHideZendesk: () => void;
1290
1291