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;