Interface ListStore<Value>

Implements the storage for an HList.

interface ListStore<Value extends OptionalHVal> {
    "[LIST_STORE_SYMBOL]": symbol;
    values: Value[];
    toJSON(): HaysonList;
    toJSONString(): string;
    toJSONUint8Array(): Uint8Array;
}

Type Parameters

Implemented by

Properties

"[LIST_STORE_SYMBOL]": symbol

Indicates this is a list store.

values: Value[]

The list values

Methods

  • Returns Uint8Array

    A byte buffer that has an encoded JSON string representation of the object.