web-component-wrapper 0.0.332 → 0.0.333

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/type.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-component-wrapper",
3
- "version": "0.0.332",
3
+ "version": "0.0.333",
4
4
  "description": "Generic web-component base class and framework specific wrapper.",
5
5
  "keywords": [
6
6
  "component",
package/type.d.ts CHANGED
@@ -47,7 +47,7 @@ export interface StaticWebComponent extends WebComponentConfiguration {
47
47
  };
48
48
  }
49
49
  export declare type ComponentType = ReactComponentType & StaticWebComponent;
50
- export interface ComponentAdapter<Properties = Mapping<any>, State = Mapping<any>> {
50
+ export interface ComponentAdapter<Properties = Mapping<unknown>, State = Mapping<unknown>> {
51
51
  properties?: Properties;
52
52
  state?: State;
53
53
  }