UNPKG

greek-text-utils

Version:

A collection of greek text utils, including conversion to ISO 843/ELOT 743, Greeklish, Phonetic Latin, and Transliterated Latin

8 lines (7 loc) 148 B
/** * Interface for character mapping objects used in text conversion */ export type ReplacementMap = { find: string; replace: string; };