/** * Line ending. */ export enum LineEnding { /** * Carriage return. Used for legacy Mac OS systems. */ CR = '\r', /** * Line feed. Used for Linux/*NIX systems as well as newer macOS systems. */ LF = '\n', /** * Carriage return/line feed combination. Used for Windows systems. */ CRLF = '\r\n', } /** * Type for a placeholder object value. */ type PlaceholderObject = Record /** * Tag name for the `` element. */ const TAG_NAME_INPUT = 'INPUT' as const; /** * Tag name for the `