Any way to use it with typescript ?
Currently i have following error:
Module '"../../../../node_modules/v-stripe-elements/types"' has no exported member 'VStripeCard'
I try also to import like that:
import { VStripeCard } from 'v-stripe-elements/lib/index'
And then add declare module 'v-stripe-elements/lib/index' in a .d.ts file
But then I have following error:
Cannot use import statement outside a module
Any way to use it with typescript ?
Currently i have following error:
Module '"../../../../node_modules/v-stripe-elements/types"' has no exported member 'VStripeCard'I try also to import like that:
import { VStripeCard } from 'v-stripe-elements/lib/index'And then add
declare module 'v-stripe-elements/lib/index'in a .d.ts fileBut then I have following error:
Cannot use import statement outside a module