vt-notifications icon indicating copy to clipboard operation
vt-notifications copied to clipboard

Typescript support

Open albertcito opened this issue 4 years ago • 1 comments

albertcito avatar Dec 21 '20 20:12 albertcito

Simple workaround:

add declaration to the project folder

types/vt-notifications.d.ts

declare module 'vt-notifications' {
  import { PluginFunction } from 'vue';
  export const install: PluginFunction<never>;
}

adinvadim avatar Jun 01 '21 20:06 adinvadim