请问一下 Deno 怎么用 DefinitelyTyped

在开发 Chrome 拓展的时候会用到 https://github.com/DefinitelyTyped/DefinitelyTyped 里的 jQuery 和 Chrome.
NodeJS 里用 npm 下载为 devDependencies 编辑器就有智能提示和高亮了.
想问一下如果仅用 Deno 的话怎么达到同样的效果呢?

大概这样

// @deno-types="https://cdn.jsdelivr.net/npm/@types/big.js@6.1.1/index.d.ts"
import Big from "https://unpkg.com/big.js@6.1.1/big.mjs";
2 个赞

感谢!