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

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