UNPKG

carstream

Version:

Web stream CAR reader and writer.

16 lines 342 B
import { UnknownLink } from 'multiformats'; export interface Block { cid: UnknownLink; bytes: Uint8Array; } export interface Position { offset: number; length: number; blockOffset: number; blockLength: number; } export interface CARHeader { roots: UnknownLink[]; version: 1; } //# sourceMappingURL=api.d.ts.map