14 lines
267 B
JavaScript
14 lines
267 B
JavaScript
import diff from './diff.js';
|
|
import addedDiff from './added.js';
|
|
import deletedDiff from './deleted.js';
|
|
import updatedDiff from './updated.js';
|
|
import detailedDiff from './detailed.js';
|
|
|
|
export {
|
|
addedDiff,
|
|
diff,
|
|
deletedDiff,
|
|
updatedDiff,
|
|
detailedDiff
|
|
};
|