DefinitelyTyped/types/diacritics/index.d.ts
2017-08-20 15:37:53 -07:00

15 lines
409 B
TypeScript

// Type definitions for diacritics 1.3
// Project: https://github.com/andrewrk/node-diacritics
// Definitions by: Oto Ciulis <https://github.com/otociulis>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export function remove(str: string): string;
export const replacementList: Array<{
base: string;
chars: string;
}>;
export const diacriticsMap: {
[key: string]: string;
};