%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
declare module eol { /** * Normalize line endings in text for the current operating system * @return string with line endings normalized to \r\n or \n */ export function auto(text: string): string; /** * Normalize line endings in text to CRLF (Windows, DOS) * @return string with line endings normalized to \r\n */ export function crlf(text: string): string; /** * Normalize line endings in text to LF (Unix, OS X) * @return string with line endings normalized to \n */ export function lf(text: string): string; /** * Normalize line endings in text to CR (Mac OS) * @return string with line endings normalized to \r */ export function cr(text: string): string; /** * Add linebreak before text * @return string with linebreak added before text */ export function before(text: string): string; /** * Add linebreak after text * @return string with linebreak added after text */ export function after(text: string): string; /** * Split text by newline * @return array of lines */ export function split(text: string): Array<string>; } declare module "eol" { export = eol; }