/** * A whitespace character. This includes the space character, the tab character, * the line feed character, the carriage return character, and the vertical * tab character. */ type CharacterWhitespace = ' ' | '\n' | '\r' | '\t' | '\v'; export type { CharacterWhitespace };