I use the typescript, and I want to use package with an area (eg @foo/bar
, @babel/core
etc.), which does not send its own ad types.
I tried to run something like
npm install @types/@foo/bar
but it seems inaccessible.
Is there a way to get these files .d.ts
from DefinitelyTyped in an area @types
? Is there a way to write my own domain packages if I need to?
source
share