We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b2534a commit b7a7104Copy full SHA for b7a7104
1 file changed
packages/ipfs-unixfs-exporter/src/index.ts
@@ -335,23 +335,6 @@ export interface IdentityNode extends Exportable {
335
*/
336
export type UnixFSEntry = UnixFSFile | UnixFSDirectory | ObjectNode | RawNode | IdentityNode
337
338
-export interface UnixFSBasicEntry {
339
- /**
340
- * The name of the entry
341
- */
342
- name: string
343
-
344
345
- * The path of the entry within the DAG in which it was encountered
346
347
- path: string
348
349
350
- * The CID of the entry
351
352
- cid: CID
353
-}
354
355
export interface Resolver {
356
(cid: CID, blockstore: ReadableStorage, options: ExporterOptions): Promise<UnixFSEntry>
357
}
0 commit comments