FjordWardenF
Denoβ€’3y agoβ€’
2 replies
FjordWarden

Can't import typescript module

Why can I only import the js file and not the ts file?

import * as zip from "https://deno.land/x/zipjs@v2.7.29/index.js"
import * as zipjs from "https://deno.land/x/zipjs@v2.7.29/index.d.ts";

zipjs.Writer //undefined
zip.ZipWriter //[class ZipWriter]
Was this page helpful?