refactor: remove option to disable excluding

This commit is contained in:
p-sw 2024-05-21 19:36:03 +09:00
parent 2adfcd5392
commit 694ee880f3

View File

@ -99,18 +99,11 @@ export function vcn<V extends VariantType, N extends string>({
) => string, ) => string,
<AnyPropBeforeResolve extends Record<string, any>>( <AnyPropBeforeResolve extends Record<string, any>>(
anyProps: AnyPropBeforeResolve, anyProps: AnyPropBeforeResolve,
options?: {
excludePreset?: boolean;
excludeClassName?: boolean;
}
) => [ ) => [
Partial<VariantKV<V>> & { Partial<VariantKV<V>>,
className?: string;
preset?: N | undefined;
},
Omit< Omit<
AnyPropBeforeResolve, AnyPropBeforeResolve,
keyof Partial<VariantKV<V>> | "className" | "preset" keyof Partial<VariantKV<V>> | "preset" | "className"
>, >,
], ],
] { ] {