Skip to content

Commit 66e49e8

Browse files
committed
Remove unnecessary type
1 parent 0af495c commit 66e49e8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/modules/gh-docs/.server/tarball.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as zlib from "node:zlib";
2-
import { parseTar, type TarEntry } from "@remix-run/tar-parser";
2+
import { parseTar } from "@remix-run/tar-parser";
33

44
type ProcessFile = ({
55
filename,
@@ -24,7 +24,7 @@ async function processFilesFromRepoTarball(
2424
): Promise<void> {
2525
let data = await gunzip(compressedData);
2626

27-
await parseTar(data, async (entry: TarEntry) => {
27+
await parseTar(data, async (entry) => {
2828
// Make sure the file matches the ones we want to process
2929
// In tar format, "file" represents a regular file
3030
let isMatch = entry.header.type === "file" && pattern.test(entry.name);

0 commit comments

Comments
 (0)