///
/// Variant_Bool_String_Double_Date.swift
/// This file was generated by nitrogen. DO NOT MODIFY THIS FILE.
/// https://github.com/mrousavy/nitro
/// Copyright © Marc Rousavy @ Margelo
///



/**
 * An Swift enum with associated values representing a Variant/Union type.
 * JS type: `boolean | string | number | date`
 */
@frozen
public indirect enum Variant_Bool_String_Double_Date {
  case first(Bool)
  case second(String)
  case third(Double)
  case fourth(Date)
}
