deno-checksum icon indicating copy to clipboard operation
deno-checksum copied to clipboard

Fix for Deno v1.4.0

Open sno2 opened this issue 4 years ago • 0 comments

You will get the following errors in the terminal if you don't merge this:

TS1371 [ERROR]: This import is never used as a value and must use 'import type' because the 'importsNotUsedAsValues' is set to 'error'.
import { HashAlgorithm } from "./hash.ts";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    at https://deno.land/x/[email protected]/sha1.ts:1:1

TS1371 [ERROR]: This import is never used as a value and must use 'import type' because the 'importsNotUsedAsValues' is set to 'error'.
import { HashAlgorithm } from "./hash.ts";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    at https://deno.land/x/[email protected]/md5.ts:1:

sno2 avatar Sep 16 '20 02:09 sno2