UNPKG

string-metric

Version:

Get string similarity in JavaScript or TypeScript

12 lines (11 loc) 456 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CharacterInsDelInterface = void 0; var CharacterInsDelInterface = /** @class */ (function () { function CharacterInsDelInterface(deletionCost, insertionCost) { this.deletionCost = deletionCost; this.insertionCost = insertionCost; } return CharacterInsDelInterface; }()); exports.CharacterInsDelInterface = CharacterInsDelInterface;