remove selectedKey

This commit is contained in:
Matt Hill
2023-03-28 08:25:55 -06:00
parent 60a6a27682
commit be48be2de6
3 changed files with 2 additions and 3 deletions

View File

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