rs-diff/index.d.ts

10 lines
267 B
TypeScript
Raw Permalink Normal View History

2020-08-26 02:25:48 +00:00
export const diffChars: (
left: string,
right: string,
) => [{ count: number; value: string; added: boolean; removed: boolean }]
2020-09-14 03:24:45 +00:00
export const diffLines: (
left: string,
right: string,
) => [{ count: number; value: string; added: boolean; removed: boolean }]