mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
7 lines
187 B
TypeScript
7 lines
187 B
TypeScript
import diff3Merge = require('diff3');
|
|
|
|
const a = ['a', 'text', 'file'];
|
|
const o = ['a', 'test', 'file'];
|
|
const b = ['a', 'toasty', 'filtered', 'file'];
|
|
const diff3 = diff3Merge(a, o, b);
|