feat: make base optional

This commit is contained in:
p-sw 2024-05-19 11:05:31 +09:00
parent 8902e62a16
commit bd19c4e837

View File

@ -15,7 +15,7 @@ export function vcn<V extends Record<string, Record<string, string>>>({
variants, variants,
defaults, defaults,
}: { }: {
base: string; base?: string | undefined;
variants: V; variants: V;
defaults: { defaults: {
[VariantKey in keyof V]: BooleanString<keyof V[VariantKey] & string>; [VariantKey in keyof V]: BooleanString<keyof V[VariantKey] & string>;