gill

CollectionToggleArgs

type CollectionToggleArgs = 
  | {
  __kind: "None";
}
  | {
  __kind: "Clear";
}
  | {
  __kind: "Set";
  fields: readonly [CollectionArgs];
};