Skip to content

Commit

Permalink
fix: error because importsNotUsedAsValues with deno 1.4 --unstable
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobhellermann committed Sep 14, 2020
1 parent 0c138aa commit 85b6235
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tar/mod.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Tar, Untar, ensureDir, path } from "../deps.ts";
import { compressInterface } from "../interface.ts";
import type { compressInterface } from "../interface.ts";

export async function uncompress(src: string, dest: string): Promise<void> {
const reader = await Deno.open(src, { read: true });
Expand Down
2 changes: 1 addition & 1 deletion tgz/mod.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as tar from "../tar/mod.ts";
import { gzipFile, gunzipFile } from "../gzip/gzip_file.ts";
import { compressInterface } from "../interface.ts";
import type { compressInterface } from "../interface.ts";
import { path } from "../deps.ts";

export async function uncompress(src: string, dest: string): Promise<void> {
Expand Down
2 changes: 1 addition & 1 deletion zlib/zlib/deflate.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { message as msg, CODE } from "./messages.ts";
import ZStream from "./zstream.ts";
import type ZStream from "./zstream.ts";
import * as trees from "./trees.ts";
import adler32 from "./adler32.ts";
import { crc32 } from "./crc32.ts";
Expand Down
2 changes: 1 addition & 1 deletion zlib/zlib/inflate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import adler32 from "./adler32.ts";
import { crc32 } from "./crc32.ts";
import inflate_fast from "./inffast.ts";
import inflate_table from "./inftrees.ts";
import ZStream from "./zstream.ts";
import type ZStream from "./zstream.ts";

const CODES = 0;
const LENS = 1;
Expand Down

0 comments on commit 85b6235

Please sign in to comment.