// Indicates that the input string is not an integer export type invalid = void!; // Indicates that the input number is too large to be represented by the // requested data type export type overflow = void!; // The valid numeric bases for numeric conversions. export type base = enum uint { // Base 2, binary BIN = 2, // Base 8, octal OCT = 8, // Base 10, decimal DEC = 10, // Base 16, UPPERCASE hexadecimal HEX_UPPER = 16, // Alias for HEX_UPPER HEX = 16, // Base 16, lowercase hexadecimal HEX_LOWER = 17, };