import * as t from "io-ts" import { GroupDef } from "./GroupDef" import { NestableDef } from "./nestable" import { SlicesDef } from "./slices" import { UIDDef } from "./UIDDef" export const WidgetDef = t.union([SlicesDef, GroupDef, UIDDef, NestableDef])