spread-diff-patch
Version:
Diff & patch SpreadSheet files
17 lines (14 loc) • 473 B
text/typescript
import { F as Formatter } from '../DiffAOA-mlvW9HLo.mjs';
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 };