UNPKG

ipfs-car

Version:

Convert files to content-addressed archives (.car) and back

14 lines (12 loc) 259 B
export interface BlobLike { /** * Returns a ReadableStream which yields the Blob data. */ stream: () => ReadableStream } export interface FileLike extends BlobLike { /** * Name of the file. May include path information. */ name: string }