Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions packages/ipfs-unixfs-exporter/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<UnixFSEntry>
}
Expand Down