@interopio/groups-ui-react 4.5.0-next.0 → 4.5.1-next.0

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.
@@ -360,4 +360,6 @@ export interface ShowExternalWindowPopupConfig {
360
360
  size: Size;
361
361
  targetLocation: PopupTargetLocation;
362
362
  }
363
+ export declare const INTERNAL_UNIVERSAL_POPUPS = "internal-universal-popups";
364
+ export type WebGroupsFeatures = typeof INTERNAL_UNIVERSAL_POPUPS;
363
365
  export {};
@@ -0,0 +1,6 @@
1
+ import { WebGroupsFeatures } from './types/internal';
2
+ declare class WebGroupsFeatureDetector {
3
+ isFeatureSupported(feature: WebGroupsFeatures): boolean;
4
+ }
5
+ declare const _default: WebGroupsFeatureDetector;
6
+ export default _default;