Skip to content

Commit ebcc1f3

Browse files
authored
chore: remove unused exports (#30)
1 parent 5013271 commit ebcc1f3

2 files changed

Lines changed: 2 additions & 11 deletions

File tree

packages/zip-stream/src/archivers/crc32-stream.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Transform, type TransformCallback } from "node:stream";
2-
import { DeflateRaw, type ZlibOptions } from "node:zlib";
3-
import { crc32 } from "node:zlib";
2+
import { DeflateRaw, crc32, type ZlibOptions } from "node:zlib";
43

54
/**
65
* @private
Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,7 @@
1-
import { ArchiveEntry } from "./archivers/archive-entry";
2-
import { ArchiveOutputStream } from "./archivers/archive-output-stream";
31
import { ZipArchiveEntry } from "./archivers/zip-archive-entry";
42
import {
53
ZipArchiveOutputStream,
64
type ZipOptions,
75
} from "./archivers/zip-archive-output-stream";
86

9-
export {
10-
ArchiveEntry,
11-
ArchiveOutputStream,
12-
ZipArchiveEntry,
13-
ZipArchiveOutputStream,
14-
type ZipOptions,
15-
};
7+
export { ZipArchiveEntry, ZipArchiveOutputStream, type ZipOptions };

0 commit comments

Comments
 (0)