UNPKG

@promptbook/remote-server

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

13 lines (12 loc) 304 B
/** * Map of letters from diacritic variant to diacritless variant * Contains lowercase and uppercase separatelly * * > "á" => "a" * > "ě" => "e" * > "Ă" => "A" * > ... * * @public exported from `@promptbook/utils` */ export declare const DIACRITIC_VARIANTS_LETTERS: Record<string, string>;