Provided types for unidecode

This commit is contained in:
Ewout Stortenbeker 2022-07-25 22:39:13 +02:00
parent b78d875911
commit 054d1cdacd

3
src/ts/unidecode.ts Normal file
View file

@ -0,0 +1,3 @@
declare module 'unidecode' {
export default function unidecode(input: string): string;
}