fix: rollback unknown to any

This commit is contained in:
p-sw 2024-06-05 19:08:02 +09:00
parent 8cb43b3c1f
commit 7b17e6df9b

View File

@ -109,7 +109,7 @@ export function vcn<V extends VariantType>(param: {
/** /**
* Any Props -> Variant Props, Other Props * Any Props -> Variant Props, Other Props
*/ */
<AnyPropBeforeResolve extends Record<string, unknown>>( <AnyPropBeforeResolve extends Record<string, any>>(
anyProps: AnyPropBeforeResolve anyProps: AnyPropBeforeResolve
) => [ ) => [
Partial<VariantKV<V>> & { Partial<VariantKV<V>> & {
@ -139,7 +139,7 @@ export function vcn<V extends VariantType, P extends PresetType<V>>(param: {
/** /**
* Any Props -> Variant Props, Other Props * Any Props -> Variant Props, Other Props
*/ */
<AnyPropBeforeResolve extends Record<string, unknown>>( <AnyPropBeforeResolve extends Record<string, any>>(
anyProps: AnyPropBeforeResolve anyProps: AnyPropBeforeResolve
) => [ ) => [
Partial<VariantKV<V>> & { Partial<VariantKV<V>> & {
@ -254,7 +254,7 @@ export function vcn<
export type VariantProps<F extends (props: any) => string> = F extends ( export type VariantProps<F extends (props: any) => string> = F extends (
props: infer P props: infer P
) => string ) => string
? P & { [key: string]: unknown } ? P
: never; : never;
/** /**