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