Scalar.hx 224 B

123456789
  1. package php;
  2. import haxe.extern.EitherType;
  3. /**
  4. `Scalar` is a type that is compatible with any scalar value (int, float, bool, string)
  5. **/
  6. typedef Scalar = EitherType<Int, EitherType<String, EitherType<Float, Bool>>>;