6 lines
162 B
TypeScript
6 lines
162 B
TypeScript
declare module 'what-the-diff' {
|
|
export const parse: (
|
|
rawDiff: string,
|
|
) => { oldPath?: string; newPath?: string; binary: boolean; status: string }[];
|
|
}
|