4 lines
133 B
TypeScript
Raw Normal View History

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