This commit is contained in:
Matt Hill
2023-03-28 08:38:57 -06:00
parent be48be2de6
commit b375e3c659
3 changed files with 6 additions and 3 deletions

View File

@@ -66,6 +66,7 @@ export interface ValueSpecBoolean extends WithStandalone {
export interface ValueSpecUnion extends WithStandalone {
type: "union";
selectKey: string;
nullable: boolean;
variants: Record<string, { name: string; spec: InputSpec }>;
}