nuxt-google-maps-module icon indicating copy to clipboard operation
nuxt-google-maps-module copied to clipboard

Typescript support

Open ponnex opened this issue 5 years ago • 1 comments

Can we add typings for typescript support? Or how do we add custom typings for vue interface this.$google?

ponnex avatar Aug 08 '19 02:08 ponnex

You can create your own.

Here's mine:

import Google from 'nuxt-google-maps-module'
import Vue from 'vue'

declare module 'vue/types/vue' {
  interface Vue {
    $google: Google
  }
}

harlet avatar Mar 29 '20 07:03 harlet