From 5943d961edac288e332aefb6e5e1563bcb7aafa2 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Tue, 28 Mar 2023 09:30:03 -0600 Subject: [PATCH] add nullable to union --- lib/config/config-types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/config/config-types.ts b/lib/config/config-types.ts index 30b7b03..94552cc 100644 --- a/lib/config/config-types.ts +++ b/lib/config/config-types.ts @@ -67,6 +67,7 @@ export interface ValueSpecBoolean extends WithStandalone { export interface ValueSpecUnion extends WithStandalone { type: "union"; nullable: boolean; + default: null | string variants: Record; }