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.
- package/package.json +1 -1
- package/type.d.ts +1 -1
package/package.json
CHANGED
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<
|
|
50
|
+
export interface ComponentAdapter<Properties = Mapping<unknown>, State = Mapping<unknown>> {
|
|
51
51
|
properties?: Properties;
|
|
52
52
|
state?: State;
|
|
53
53
|
}
|