chore: prettier."

This commit is contained in:
BluJ
2023-03-31 09:38:36 -06:00
parent ce9c2a0db2
commit f3f3d8c10c
9 changed files with 292 additions and 80 deletions

View File

@@ -67,7 +67,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);
}