export declare type PeerResponseStatusType = 'resolve' | 'reject' | 'initial'; export interface PeerChunkId { chunkId?: string; } export interface PeerChunkBody { readonly path: string; readonly body?: Body; notWaiting?: boolean; status?: PeerResponseStatusType; } export interface PeerChunkBlockForce { isBlocker?: boolean; isForce?: boolean; } export interface PeerChunkAside { aside?: { [key: string]: any; }; } export declare type PeerChunk = PeerChunkId & PeerChunkBody & PeerChunkBlockForce & PeerChunkAside; //# sourceMappingURL=peerChunkType.d.ts.map