10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
export const diffChars: (
|
|
left: string,
|
|
right: string,
|
|
) => [{ count: number; value: string; added: boolean; removed: boolean }]
|
|
|
|
export const diffLines: (
|
|
left: string,
|
|
right: string,
|
|
) => [{ count: number; value: string; added: boolean; removed: boolean }]
|