UNPKG

spread-diff-patch

Version:
17 lines (14 loc) 472 B
import { F as Formatter } from '../DiffAOA-mlvW9HLo.js'; type DiffAOA = (string | (string | null)[])[][]; /** * Represents a CSV formatter that converts a DiffAOA (Array of Arrays) into a CSV string. */ declare class CSV extends Formatter<string> { /** * Formats the given DiffAOA into a CSV string. * @param diffAOA - The DiffAOA to be formatted. * @returns The formatted CSV string. */ format(diffAOA: DiffAOA): string; } export { CSV };