6 lines
162 B
TypeScript
Raw Normal View History

2020-06-18 10:11:37 +03:00
declare module 'what-the-diff' {
export const parse: (
rawDiff: string,
) => { oldPath?: string; newPath?: string; binary: boolean; status: string }[];
}