/** * Specifies what sort of line endings to use. */ export declare enum EolStyle { /** * Carriage Return, followed by a line feed. Windows-style. */ Crlf = 0, /** * Just a line feed. Unix-style (including Mac). */ Lf = 1 }