Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
so1ve committed Jul 7, 2023
1 parent 8e0ed7e commit 3fe931f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vue-language-core/src/utils/globalTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ declare function __VLS_pickFunctionalComponentCtx<T, K>(comp: T, compInstance: K
>;
type __VLS_AsFunctionOrAny<F> = unknown extends F ? any : ((...args: any) => any) extends F ? F : any;
type __VLS_NormalizeSlots<T> = {
[K in keyof T]: T[K] extends () => any ? (arg: any) => ReturnType<T[K]> : T[K]
[K in keyof T]: T[K] extends () => infer R ? (arg: any) => R : T[K]
}
declare function __VLS_componentProps<T, K>(comp: T, fnReturn: K):
Expand Down

0 comments on commit 3fe931f

Please sign in to comment.