web-component-wrapper 0.0.332 → 0.0.333

Sign up to get free protection for your applications and to get access to all the features.
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
  }