From 395c2f8ed1c10b75a61a596b8ab7fe7a368931fe Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 14 Jun 2024 23:49:11 +0900 Subject: [PATCH] fix: use any instead of unknown for AnyPropBeforeResolve TypeScript throws error in component's resolve usage about index signature. --- packages/react/lib/vcn.ts | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/packages/react/lib/vcn.ts b/packages/react/lib/vcn.ts index 41f7669..d232f2c 100644 --- a/packages/react/lib/vcn.ts +++ b/packages/react/lib/vcn.ts @@ -108,7 +108,8 @@ export function vcn(param: { /** * Any Props -> Variant Props, Other Props */ - >( + // eslint-disable-next-line @typescript-eslint/no-explicit-any + >( anyProps: AnyPropBeforeResolve, ) => [ Partial> & { @@ -138,7 +139,8 @@ export function vcn>(param: { /** * Any Props -> Variant Props, Other Props */ - >( + // eslint-disable-next-line @typescript-eslint/no-explicit-any + >( anyProps: AnyPropBeforeResolve, ) => [ Partial> & { @@ -267,8 +269,5 @@ export function vcn< * } * ``` */ -export type VariantProps string> = F extends ( - props: infer P, -) => string - ? P - : never; +export type VariantProps) => string> = + F extends (props: infer P) => string ? { [key in keyof P]: P[key] } : never;