@fishan/myers-core-diff
Version:
A high-performance core diff engine based on Myers' algorithm, with plugin support for custom strategies (e.g., Patience, Preserve Structure).
11 lines (10 loc) • 474 B
TypeScript
/**
* @license
* Copyright (c) 2025, Aleks Fishan
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
export { DiffOperation, MyersCoreDiff, type DiffResult, type DiffOptions, type DiffStrategyPlugin, type Anchor } from './myers_core_diff.js';
export { registerPatienceDiffStrategy } from './strategy_patience.js';
export { registerPreserveStructureStrategy } from './strategy_preserve.js';