web-component-wrapper 0.0.392 → 0.0.393
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 +2 -2
package/package.json
CHANGED
package/type.d.ts
CHANGED
@@ -52,9 +52,9 @@ export interface WebComponentConfiguration<ExternalProperties extends Mapping<un
|
|
52
52
|
propTypes?: PropertiesConfiguration;
|
53
53
|
renderProperties?: Array<string>;
|
54
54
|
}
|
55
|
-
export interface StaticWebComponent extends WebComponentConfiguration {
|
55
|
+
export interface StaticWebComponent<ComponentType = unknown, ExternalProperties extends Mapping<unknown> = Mapping<unknown>, InternalProperties extends Mapping<unknown> = Mapping<unknown>, EventParameters extends Array<unknown> = Array<unknown>> extends WebComponentConfiguration<ExternalProperties, InternalProperties, EventParameters> {
|
56
56
|
webComponentAdapterWrapped?: string;
|
57
|
-
wrapped?:
|
57
|
+
wrapped?: ComponentType;
|
58
58
|
_name?: string;
|
59
59
|
___types?: {
|
60
60
|
name?: {
|