/** * The type of an attribute value */ export type ValueType = 'string' | 'int' | 'double' | 'text' | 'html' | 'date' | 'image' | 'boolean' | 'money' | 'quantity' | 'datetime' | 'email' | 'password' | 'set_of_string' | 'set_of_int' | 'set_of_double' | 'enum_of_string' | 'enum_of_int';