@bigbinary/neeto-commons-frontend 2.0.23 → 2.0.25

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/react-utils.d.ts CHANGED
@@ -139,6 +139,8 @@ export declare type ZustandStoreHook = {
139
139
 
140
140
  export const CustomDomain: React.FC<{}>;
141
141
 
142
+ export const IpRestriction: React.FC<{}>;
143
+
142
144
  export function useFieldSubmit(onSubmit: () => any): {
143
145
  current: HTMLInputElement & HTMLTextAreaElement;
144
146
  };
@@ -177,3 +179,7 @@ export function withTitle(
177
179
  Component: () => JSX.Element,
178
180
  title?: string
179
181
  ): (props) => JSX.Element;
182
+
183
+ export async function registerBrowserNotifications(): Promise<void>;
184
+
185
+ export async function destroyBrowserSubscription(): Promise<void>;