[Vuejs]-Could not find a declaration file for module 'vue-email-editor' in VueJs

0👍

The vue-email-editor doesn’t export Typescript types.
Neither it has types declared in the @types/ repository.

In this case, to avoid complaints from Typescript, you have to declare the types yourself.

It can be as simple as doing:

// vue-email-editor.d.ts
declare module 'vue-email-editor'

Leave a comment