vuejs-tips / v-money

Tiny (<2k gzipped) input/directive mask for currency
https://vuejs-tips.github.io/v-money/
775 stars 255 forks source link

Need @types for Typescript with Vuejs #87

Open helioelias opened 5 years ago

helioelias commented 5 years ago

I received the error @types/v-moneyif it exists or add a new declaration (.d.ts) file containingdeclare module 'v-money';

you can post the @types for v-money.

Thks Helio Elias

bearkfear commented 4 years ago

Seria bom!

RLSilveira commented 3 years ago

Seria bom!

JohnEricJahn commented 3 years ago

Deixar aquele up aqui também, realmente seria ótimo.

walisoncm commented 3 years ago
declare module 'v-money' {
  import money, { VMoney } from 'v-money';
  export default money;
  export { VMoney };
}
jonathanpmartins commented 3 years ago

This give me a hint to transform v-money3 to TypeScript. Thanks for the involuntary tip @walisoncm !