1

I am beginner in typescript and could someone give me a hint: How will look like d.ts file from js library https://github.com/bettiolo/oauth-signature-js/blob/master/src/app/oauth-signature.js

pmalecki
  • 229
  • 1
  • 2
  • 12
  • I described the process in another question: http://stackoverflow.com/questions/33044217/typescript-definition-file-for-spservices/33064546#33064546 – MartyIX Oct 22 '15 at 09:17

1 Answers1

1

It's not possible to automatically create d.ts files. You should write it. Although you can look into DefinitelyTyped library, there are many typings for popular libraries.

Romko
  • 1,808
  • 21
  • 27