propro-common-components 0.1.261 → 0.1.262

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,2 +1,3 @@
1
1
  export declare function localStorageSetItem(key: string, value: unknown): void;
2
2
  export declare function localStorageGetItem(key: string): any;
3
+ export declare function localStorageRemoveItem(key: string): void;
@@ -2,3 +2,4 @@ export default function getStorage(key: string): any;
2
2
  export declare function setStorage(key: string, value: unknown, options?: {
3
3
  [key: string]: string | number | boolean | Date;
4
4
  }): void;
5
+ export declare function removeStorage(key: string): void;
@@ -1 +1 @@
1
- export default function logout(): Promise<void>;
1
+ export default function logout(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "propro-common-components",
3
- "version": "0.1.261",
3
+ "version": "0.1.262",
4
4
  "type": "module",
5
5
  "main": "dist/propro-common-components.js",
6
6
  "types": "dist/main.d.ts",