@lwc/engine-core
Advanced tools
Comparing version 1.7.6 to 1.7.7
{ | ||
"name": "@lwc/engine-core", | ||
"version": "1.7.6", | ||
"version": "1.7.7", | ||
"description": "Core LWC engine APIs.", | ||
@@ -28,4 +28,4 @@ "homepage": "https://lwc.dev/", | ||
"devDependencies": { | ||
"@lwc/features": "1.7.6", | ||
"@lwc/shared": "1.7.6", | ||
"@lwc/features": "1.7.7", | ||
"@lwc/shared": "1.7.7", | ||
"observable-membrane": "0.26.1" | ||
@@ -36,3 +36,3 @@ }, | ||
}, | ||
"gitHead": "adb0354eb1105fb6cdeab8456f5a938997ba7822" | ||
"gitHead": "3fbdc1737e909eb89697b636e4323a86a6977ee1" | ||
} |
@@ -23,7 +23,6 @@ import { VM } from './vm'; | ||
*/ | ||
export declare function registerComponent(Ctor: ComponentConstructor, { name, tmpl: template }: { | ||
name: string; | ||
export declare function registerComponent(Ctor: ComponentConstructor, { tmpl }: { | ||
tmpl: Template; | ||
}): ComponentConstructor; | ||
export declare function getComponentRegisteredMeta(Ctor: ComponentConstructor): ComponentMeta | undefined; | ||
export declare function getComponentRegisteredTemplate(Ctor: ComponentConstructor): Template | undefined; | ||
export declare function createComponent(vm: VM, Ctor: ComponentConstructor): void; | ||
@@ -30,0 +29,0 @@ export declare function getTemplateReactiveObserver(vm: VM): ReactiveObserver; |
@@ -34,3 +34,3 @@ /** | ||
export declare function isComponentConstructor(ctor: unknown): ctor is ComponentConstructor; | ||
export declare function getComponentInternalDef(Ctor: unknown, name?: string): ComponentDef; | ||
export declare function getComponentInternalDef(Ctor: unknown): ComponentDef; | ||
/** Set prototype for public methods and properties on the element. No DOM Patching occurs here. */ | ||
@@ -57,3 +57,3 @@ export declare function setElementProto(elm: HostElement, def: ComponentDef): void; | ||
*/ | ||
export declare function getComponentDef(Ctor: any, subclassComponentName?: string): PublicComponentDef; | ||
export declare function getComponentDef(Ctor: any): PublicComponentDef; | ||
export {}; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
416194
11579