fix: rollback unknown to any
This commit is contained in:
parent
8cb43b3c1f
commit
7b17e6df9b
@ -109,7 +109,7 @@ export function vcn<V extends VariantType>(param: {
|
||||
/**
|
||||
* Any Props -> Variant Props, Other Props
|
||||
*/
|
||||
<AnyPropBeforeResolve extends Record<string, unknown>>(
|
||||
<AnyPropBeforeResolve extends Record<string, any>>(
|
||||
anyProps: AnyPropBeforeResolve
|
||||
) => [
|
||||
Partial<VariantKV<V>> & {
|
||||
@ -139,7 +139,7 @@ export function vcn<V extends VariantType, P extends PresetType<V>>(param: {
|
||||
/**
|
||||
* Any Props -> Variant Props, Other Props
|
||||
*/
|
||||
<AnyPropBeforeResolve extends Record<string, unknown>>(
|
||||
<AnyPropBeforeResolve extends Record<string, any>>(
|
||||
anyProps: AnyPropBeforeResolve
|
||||
) => [
|
||||
Partial<VariantKV<V>> & {
|
||||
@ -254,7 +254,7 @@ export function vcn<
|
||||
export type VariantProps<F extends (props: any) => string> = F extends (
|
||||
props: infer P
|
||||
) => string
|
||||
? P & { [key: string]: unknown }
|
||||
? P
|
||||
: never;
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user