TypeScript usage
See original GitHub issuefacing an error with TS
ERROR in [at-loader] ./node_modules/clooneyjs/clooney.d.ts:14:25
TS2307: Cannot find module 'comlink'.
here https://github.com/GoogleChromeLabs/clooney/blob/master/dist/clooney.d.ts#L14 I see here that you’re exporting this:
export { Comlink } from 'comlink';
but module doens’t have that name…
Should be
export { Comlink } from 'comlinkjs';
right?
Issue Analytics
- State:
- Created 6 years ago
- Comments:12 (6 by maintainers)
Top Results From Across the Web
TypeScript: JavaScript With Syntax For Types.
TypeScript extends JavaScript by adding types to the language. ... TypeScript understands JavaScript and uses type inference to give you great tooling ...
Read more >Why You Should Use TypeScript - Serokell
JavaScript is the most popular language to implement scripting for the frontend of apps and web pages. Thus, TypeScript can be used for...
Read more >Why You Should Use Typescript for Your Next Project
TypeScript is a superset of typed JavaScript (optional) that can help build and manage large-scale JavaScript projects. It can be considered ...
Read more >What is TypeScript and why would I use it in place of JavaScript?
TypeScript is a superset of the JavaScript language that has a single open-source compiler and is developed mainly by a single vendor: Microsoft ......
Read more >How to Use TypeScript – Beginner-Friendly TS Tutorial
TypeScript is a superset of JavaScript. Superset means that it adds features on top of what JavaScript offers. TypeScript takes all the ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
🎉 Thanks for your patience @k1r0s!
It is exposed via
Clooney.Comlink
, in case someone wants to tweak Comlink’s transferhandlers.Thanks for the test case. My hunch is that I just need to publish my
tsconfig.json
to npm. I’ll get back to you!