Variable: byteStoreSchema
ts
const byteStoreSchema: AnySchema<any>;Defined in: lib/contracts/byte_store.ts:90
Validator schema used to validate a ByteStore value.
Remarks
Because ByteStore is a structural interface with no associated constructor, validation is duck-typed: the value must be non-null with write, read, and delete present as callable properties. Arity is not enforced — implementations may add optional parameters beyond the contract. The reader type R cannot be checked structurally here; conformance of the reader is the caller's concern at the point of use.