Skip to content
1 min read · 55 words

Type Alias: SpoolStore

ts
type SpoolStore = ByteStore<SpoolReader>;

Defined in: lib/contracts/byte_store.ts:69

A ByteStore that hands out line-indexed text readers (@nhtio/adk!SpoolReader).

Remarks

The store backing tool-output artifacts. Stored bytes are decoded as UTF-8 text for line-oriented reads; binary input is stored byte-faithfully but SpoolReader.readAll() interprets it as text, so opaque binary belongs in a MediaStore / Media, not here.