Using npm modules in Typescript

后端 未结 3 623
陌清茗
陌清茗 2021-01-02 02:16

I would like to use npm module in Typescript project but there is no typings or tsd for this module. When I try use import Module from \'module\' I had an error

3条回答
  •  余生分开走
    2021-01-02 03:20

    By example: npm install numwords

    Then added the import the .ts file: import * as numwords from 'num-words';

    And then the usage: console.log((numwords(5));

提交回复
热议问题