1export declare enum BaseType { 2 None = 0, 3 UType = 1, 4 Bool = 2, 5 Byte = 3, 6 UByte = 4, 7 Short = 5, 8 UShort = 6, 9 Int = 7, 10 UInt = 8, 11 Long = 9, 12 ULong = 10, 13 Float = 11, 14 Double = 12, 15 String = 13, 16 Vector = 14, 17 Obj = 15, 18 Union = 16, 19 Array = 17, 20 MaxBaseType = 18 21}