chore: incr version

This commit is contained in:
BluJ
2023-04-03 10:19:58 -06:00
parent 24e2f1c8dd
commit 510074530f
7 changed files with 68 additions and 22 deletions

View File

@@ -80,7 +80,10 @@ export class Variants<
static empty() {
return Variants.of({});
}
static withVariant<K extends string, B extends InputSpec>(key: K, value: Config<B>) {
static withVariant<K extends string, B extends InputSpec>(
key: K,
value: Config<B>
) {
return Variants.empty().withVariant(key, value);
}