Custom cordova plugin creation for ionic2 project

前端 未结 3 849
走了就别回头了
走了就别回头了 2021-01-01 01:41

Many of us would have gone through similar issues, but even after going through following most relevant links reference link1 and reference link2 , I am not able to resolve.

3条回答
  •  既然无缘
    2021-01-01 02:03

    As far as typings is concerned, it is no longer used. All or most typescript declarations are moved to npm itself and you install them as npm install @types/package_name. https://www.npmjs.com/~types https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/README.md If you need typings folder you could try

    npm install typings
    

    you can also referance type declararions through

    // 
    

    in typescript

提交回复
热议问题