UNPKG

diffblazer

Version:

A super fast diffing utility for HTML and Plaintext

9 lines (8 loc) 282 B
import { TagToken } from './tokenizer'; export type MatchOptions = { blockSize: number; repeatingTokensAccuracy: number; ignoreWhitespaceDifferences: boolean; matchers: Record<string, (token: TagToken) => string>; }; export declare const MatchOptions: MatchOptions;