@vue/compiler-sfc 3.6.0-alpha.2 → 3.6.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 +226 -79
- package/dist/compiler-sfc.d.ts +1 -1
- package/dist/compiler-sfc.esm-browser.js +939 -451
- package/package.json +11 -11
package/dist/compiler-sfc.d.ts
CHANGED
|
@@ -471,7 +471,7 @@ export declare function registerTS(_loadTS: () => typeof TS): void;
|
|
|
471
471
|
* @private
|
|
472
472
|
*/
|
|
473
473
|
export declare function invalidateTypeCache(filename: string): void;
|
|
474
|
-
export declare function inferRuntimeType(ctx: TypeResolveContext, node: Node & MaybeWithScope, scope?: TypeScope, isKeyOf?: boolean): string[];
|
|
474
|
+
export declare function inferRuntimeType(ctx: TypeResolveContext, node: Node & MaybeWithScope, scope?: TypeScope, isKeyOf?: boolean, typeParameters?: Record<string, Node>): string[];
|
|
475
475
|
|
|
476
476
|
export declare function extractRuntimeEmits(ctx: TypeResolveContext): Set<string>;
|
|
477
477
|
|