DefinitelyTyped/types/difflib/difflib-tests.ts

10 lines
182 B
TypeScript

import { SequenceMatcher } from "difflib";
const sequenceMatcher = new SequenceMatcher(
null,
["first", "second"],
["third", "fourth"]
);
sequenceMatcher.getOpcodes();