crlf.d.ts 133 B

123
  1. import { Transform } from './index.js';
  2. export type Ending = 'LF' | 'CRLF';
  3. export default function crlf(ending: Ending): Transform;