@clickview/online 0.55.0-rc.0 → 0.55.0-rc.1

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.
@@ -13,15 +13,6 @@ License: MIT
13
13
 
14
14
  /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
15
15
 
16
- /**
17
- * @license
18
- * Lodash <https://lodash.com/>
19
- * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
20
- * Released under MIT license <https://lodash.com/license>
21
- * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
22
- * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
23
- */
24
-
25
16
  /** @license React v16.13.1
26
17
  * react-is.production.min.js
27
18
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clickview/online",
3
- "version": "0.55.0-rc.0",
3
+ "version": "0.55.0-rc.1",
4
4
  "description": "Online",
5
5
  "main": "dist/online-app.js",
6
6
  "types": "dist/index.d.ts",
@@ -0,0 +1,11 @@
1
+ declare function cloneDeep<T>(obj: T): T;
2
+
3
+ declare module 'lodash.clonedeep' {
4
+ export = cloneDeep;
5
+ }
6
+
7
+ declare function get(obj: any, path: string, defaultValue?: any): any;
8
+
9
+ declare module 'lodash.get' {
10
+ export = get;
11
+ }
@@ -1,5 +0,0 @@
1
- declare function cloneDeep<T>(obj: T): T;
2
-
3
- declare module 'lodash.clonedeep' {
4
- export = cloneDeep;
5
- }