@vue/compiler-sfc 3.5.0-alpha.2 → 3.5.0-alpha.3
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/dist/compiler-sfc.cjs.js +294 -203
- package/dist/compiler-sfc.d.ts +1 -1
- package/dist/compiler-sfc.esm-browser.js +816 -692
- package/package.json +12 -12
package/dist/compiler-sfc.d.ts
CHANGED
|
@@ -468,7 +468,7 @@ export declare function registerTS(_loadTS: () => typeof TS): void;
|
|
|
468
468
|
* @private
|
|
469
469
|
*/
|
|
470
470
|
export declare function invalidateTypeCache(filename: string): void;
|
|
471
|
-
export declare function inferRuntimeType(ctx: TypeResolveContext, node: Node & MaybeWithScope, scope?: TypeScope): string[];
|
|
471
|
+
export declare function inferRuntimeType(ctx: TypeResolveContext, node: Node & MaybeWithScope, scope?: TypeScope, isKeyOf?: boolean): string[];
|
|
472
472
|
|
|
473
473
|
export declare function extractRuntimeEmits(ctx: TypeResolveContext): Set<string>;
|
|
474
474
|
|