UNPKG
text-compare-vue3
Version:
latest (0.0.2)
0.0.2
0.0.1
A powerful text comparison plugin for Vue.js with character-level diff support
text-compare-vue3
/
src
/
utils
/
diff.d.ts
3 lines
(2 loc)
•
141 B
TypeScript
View Raw
1
2
3
import
type
{
DiffResult
}
from
'../types'
export
function
getDiffParts
(
oldText
:
string
,
newText
:
string
,
ignoreCase
?:
boolean
):
DiffResult
;