export type Integer = T & { __integerBrand?: void }; export type Float = T & { __floatBrand?: void }; export type Double = T & { __doubleBrand?: void }; export type Long = T & { __longBrand?: void }; export type Byte = T & { __byteBrand?: void }; export type Short = T & { _shortBrand?: void }; export type DateISOString = T & { __dateBrand?: void }; export type TimestampISOString = T & { __timestampBrand?: void };