From 44b1181696ecf7a3fb011e9eea62ef390f024dba Mon Sep 17 00:00:00 2001 From: achingbrain Date: Sat, 10 Jan 2026 08:15:43 +0100 Subject: [PATCH] fix: remove basic entry The interface is unused --- packages/ipfs-unixfs-exporter/src/index.ts | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/packages/ipfs-unixfs-exporter/src/index.ts b/packages/ipfs-unixfs-exporter/src/index.ts index c40fa455..ae3d4455 100644 --- a/packages/ipfs-unixfs-exporter/src/index.ts +++ b/packages/ipfs-unixfs-exporter/src/index.ts @@ -335,23 +335,6 @@ export interface IdentityNode extends Exportable { */ export type UnixFSEntry = UnixFSFile | UnixFSDirectory | ObjectNode | RawNode | IdentityNode -export interface UnixFSBasicEntry { - /** - * The name of the entry - */ - name: string - - /** - * The path of the entry within the DAG in which it was encountered - */ - path: string - - /** - * The CID of the entry - */ - cid: CID -} - export interface Resolver { (cid: CID, blockstore: ReadableStorage, options: ExporterOptions): Promise }